r2656: initial import
[lml.git] / debian / rules
1 #!/usr/bin/make -f
2
3 export DH_COMPAT=4
4
5 pkg     := lml
6 debpkg  := cl-lml
7
8
9 clc-source      := usr/share/common-lisp/source
10 clc-systems     := usr/share/common-lisp/systems
11 clc-lml := $(clc-source)/$(pkg)
12
13 doc-dir         := usr/share/doc/$(debpkg)
14
15
16 configure: configure-stamp
17 configure-stamp:
18         dh_testdir
19         # Add here commands to configure the package.
20
21         touch configure-stamp
22
23
24 build: build-stamp
25
26 build-stamp: configure-stamp 
27         dh_testdir
28
29         # Add here commands to compile the package.
30
31         touch build-stamp
32
33 clean:
34         dh_testdir
35         dh_testroot
36         rm -f build-stamp configure-stamp
37
38         # Add here commands to clean up after the build process.
39         -$(MAKE) clean
40         rm -f debian/cl-lml.postinst.* debian/cl-lml.prerm.*
41
42         dh_clean
43
44 install: build
45         dh_testdir
46         dh_testroot
47         dh_clean -k
48         dh_installdirs --all $(clc-systems) $(clc-source) 
49         dh_installdirs -p $(debpkg) $(doc-dir) $(clc-lml)/mcl 
50
51         # Add here commands to install the package into debian/lml.
52         dh_install lml.system lml.asd $(clc-systems)
53         dh_install $(shell echo *.cl) $(clc-lml)
54
55         rm -rf doc/html
56         (cd doc; tar xzf html.tar.gz; cd ..)
57         dh_install doc/html $(doc-dir)
58         rm -rf doc/html
59         cp doc/lml.pdf doc/cl-lml.pdf
60         gzip -9 doc/cl-lml.pdf
61         dh_install doc/cl-lml.pdf.gz $(doc-dir)
62
63 # Build architecture-independent files here.
64 binary-indep: build install
65
66
67 # Build architecture-dependent files here.
68 binary-arch: build install
69         dh_testdir
70         dh_testroot
71 #       dh_installdebconf       
72         dh_installdocs
73         dh_installexamples examples/*.cl
74 #       dh_installmenu
75 #       dh_installlogrotate
76 #       dh_installemacsen
77 #       dh_installpam
78 #       dh_installmime
79 #       dh_installinit
80 #       dh_installcron
81 #       dh_installman
82 #       dh_installinfo
83 #       dh_undocumented
84         dh_installchangelogs ChangeLog
85         dh_strip
86         dh_compress
87         dh_fixperms
88 #       dh_makeshlibs
89         dh_installdeb
90 #       dh_perl
91         dh_shlibdeps
92         dh_gencontrol
93         dh_md5sums
94         dh_builddeb
95
96 binary: binary-indep binary-arch
97 .PHONY: build clean binary-indep binary-arch binary install configure
98