add vcs-browser field to control
[cl-base64.git] / debian / rules
1 #!/usr/bin/make -f
2
3 pkg             := cl-base64
4 debpkg          := cl-base64
5
6 clc-source      := usr/share/common-lisp/source
7 clc-systems     := usr/share/common-lisp/systems
8 clc-files       := $(clc-source)/$(pkg)
9 doc-dir         := usr/share/doc/$(debpkg)
10
11 build:
12
13 clean:
14         dh_testdir
15         dh_testroot
16         dh_clean
17
18 install: build
19         dh_testdir
20         dh_testroot
21         dh_prep
22         dh_installdirs
23         dh_install $(pkg).asd $(clc-files)
24         dh_install *.lisp $(clc-files)
25
26 binary-indep: install
27         dh_testdir
28         dh_testroot
29         dh_installchangelogs
30         dh_installdocs
31         dh_lisp
32         dh_compress
33         dh_fixperms
34         dh_installdeb
35         dh_gencontrol
36         dh_md5sums
37         dh_builddeb
38
39 binary-arch:
40
41 binary: binary-indep
42
43
44 .PHONY: build clean binary-indep binary-arch binary install