r2732: *** empty log message ***
[uffi.git] / debian / rules
1 #!/usr/bin/make -f
2
3 export DH_COMPAT=4
4
5 pkg     := uffi
6 debpkg  := cl-uffi
7
8
9 clc-source      := usr/share/common-lisp/source
10 clc-systems     := usr/share/common-lisp/systems
11 clc-uffi        := $(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-uffi.postinst.* debian/cl-uffi.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-uffi)/src $(clc-uffi)/src-mcl 
50
51         # Add here commands to install the package into debian/uffi.
52         dh_install uffi.asd $(clc-uffi)
53         dh_install "src/*.cl" $(clc-uffi)/src
54         dh_install "src-mcl/*.cl" $(clc-uffi)/src-mcl
55         dh_link $(clc-uffi)/uffi.asd $(clc-systems)/uffi.asd
56
57         rm -rf doc/html
58         (cd doc; tar xzf html.tar.gz; cd ..)
59         dh_install doc/html $(doc-dir)
60         rm -rf doc/html
61         cp doc/uffi.pdf doc/cl-uffi.pdf
62         gzip -9 doc/cl-uffi.pdf
63         dh_install doc/cl-uffi.pdf.gz $(doc-dir)
64
65 # Build architecture-independent files here.
66 binary-indep: build install
67
68
69 # Build architecture-dependent files here.
70 binary-arch: build install
71         dh_testdir
72         dh_testroot
73 #       dh_installdebconf       
74         dh_installdocs
75         dh_installexamples examples/*.cl
76 #       dh_installmenu
77 #       dh_installlogrotate
78 #       dh_installemacsen
79 #       dh_installpam
80 #       dh_installmime
81 #       dh_installinit
82 #       dh_installcron
83 #       dh_installman
84 #       dh_installinfo
85 #       dh_undocumented
86         dh_installchangelogs ChangeLog
87         dh_strip
88         dh_compress
89         dh_fixperms
90 #       dh_makeshlibs
91         dh_installdeb
92 #       dh_perl
93         dh_shlibdeps
94         dh_gencontrol
95         dh_md5sums
96         dh_builddeb
97
98 binary: binary-indep binary-arch
99 .PHONY: build clean binary-indep binary-arch binary install configure
100