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