chiark / gitweb /
finalise changelog again
[chiark-tcl.git] / debian / rules
1 #!/usr/bin/make -f
2
3 # chiark-tcl - various Tcl bindings and extensions
4 # Copyright 2006-2012 Ian Jackson
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License as
8 # published by the Free Software Foundation; either version 2 of the
9 # License, or (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this library; if not, see <http://www.gnu.org/licenses/>.
18
19
20 majversion=1
21 srcpackage=chiark-tcl
22 libpackage=libtcl-chiark-$(majversion)
23 docpackage=libtcl-chiark-$(majversion)
24 docdir=usr/share/doc/$(docpackage)
25
26 tclh:=$(firstword $(wildcard /usr/include/tcl8.*/tcl.h))
27 tclversion:=$(patsubst /usr/include/tcl%/tcl.h,%,$(tclh))
28
29 define checkdir
30         test -f hbytes/hbytes.tct
31 endef
32
33 build: build-arch build-indep
34 build-arch:
35         $(checkdir)
36         $(MAKE) prefix=/usr VERSION=$(majversion) TCL_VERSION=$(tclversion)
37
38 build-indep:
39
40 clean:
41         $(checkdir)
42         $(MAKE) clean
43         rm -rf *~ debian/tmp debian/*~ debian/files* debian/substvars*
44         dh_clean
45
46 binary-indep:
47
48 binary-arch:    checkroot build
49         $(checkdir)
50         -rm -rf debian/$(docpackage) debian/$(libpackage)
51         install -d debian/$(libpackage)/usr/lib
52         install -d debian/$(docpackage)/usr/share/doc/$(docpackage)
53
54         set -e; for f in lintian; do                                         \
55                 install -d debian/$(libpackage)/usr/share/$$f/overrides;     \
56                 cp debian/$$f-overrides                                      \
57                  debian/$(libpackage)/usr/share/$$f/overrides/$(libpackage); \
58                 done
59
60         cp */*.so debian/$(libpackage)/usr/lib/.
61
62         set -e; for f in */*.[ch]; do                                   \
63                 perl debian/extractdoc <$$f                             \
64                         debian/$(docpackage)/$(docdir)/ $$f .txt;       \
65                 done
66         cp */*.tct debian/README debian/copyright \
67                 debian/$(docpackage)/$(docdir)
68
69         dh_installchangelogs
70         dh_strip
71
72         dh_makeshlibs
73         dh_shlibdeps -Xchiark_tcl_adns -Xchiark_tcl_crypto
74
75         # be consistent about what we compress:
76         dh_compress -X.c.txt -X.h.txt
77
78         dh_fixperms
79         dh_installdeb
80         dh_gencontrol
81         dh_md5sums
82         dh_builddeb
83
84 # Below here is fairly generic really
85
86 binary:         binary-indep binary-arch
87
88 source diff:
89         @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
90
91 checkroot:
92         $(checkdir)
93         dh_testroot
94
95 .PHONY: binary binary-arch binary-indep clean checkroot