X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=debian%2Frules;fp=debian%2Frules;h=c847ef9bc2375ad06e6889d298554113e303649a;hb=49125b7410ef805e2925f87656b91c7aee0f168c;hp=0000000000000000000000000000000000000000;hpb=4c0778836b4800966653f4b2e8aeb761fcb5cd93;p=cl-fftw3.git diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..c847ef9 --- /dev/null +++ b/debian/rules @@ -0,0 +1,44 @@ +#!/usr/bin/make -f + +pkg := cl-fftw3 +debpkg := cl-fftw3 + +clc-source := usr/share/common-lisp/source +clc-systems := usr/share/common-lisp/systems +clc-files := $(clc-source)/$(pkg) +doc-dir := usr/share/doc/$(debpkg) + +build: + +clean: + dh_testdir + dh_testroot + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + dh_install $(pkg).asd $(clc-files) + dh_install *.lisp $(clc-files) + +binary-indep: install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_lisp + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-arch: + +binary: binary-indep + + +.PHONY: build clean binary-indep binary-arch binary install