Update domain name to kpe.io
[cl-modlisp.git] / debian / rules
1 #!/usr/bin/make -f
2
3 pkg             := modlisp
4 debpkg          := cl-modlisp
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 modlisp.asd $(clc-files)
24         dh_install *.lisp $(clc-files)
25
26 binary-indep: install
27         dh_testdir
28         dh_testroot
29         dh_installdocs doc/readme.html
30         dh_installexamples
31         dh_installchangelogs
32         dh_lisp
33         dh_compress
34         dh_fixperms
35         dh_installdeb
36         dh_gencontrol
37         dh_md5sums
38         dh_builddeb
39
40 binary-arch:
41
42 binary: binary-indep binary-arch
43
44
45 .PHONY: build clean binary-indep binary-arch binary install