X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=debian%2Frules;h=a2632fe46cf220928d4a96ca4f232b04231801bf;hb=HEAD;hp=c6f129b563ac4a54f6db2f522e85e11cb8ceafe1;hpb=c110fa80fe00415972388d1f8fdb2cf4442d8e2a;p=reversi.git diff --git a/debian/rules b/debian/rules index c6f129b..a2632fe 100755 --- a/debian/rules +++ b/debian/rules @@ -1,68 +1,44 @@ #!/usr/bin/make -f -export DH_COMPAT=4 - -pkg := reversi -debpkg := cl-reversi - +pkg := reversi +debpkg := cl-reversi clc-source := usr/share/common-lisp/source clc-systems := usr/share/common-lisp/systems -clc-reversi := $(clc-source)/$(pkg) - -doc-dir := usr/share/doc/$(debpkg) - - -configure: configure-stamp -configure-stamp: - dh_testdir - # Add here commands to configure the package. - - touch configure-stamp - +clc-files := $(clc-source)/$(pkg) -build: build-stamp - -build-stamp: configure-stamp - dh_testdir - # Add here commands to compile the package. - touch build-stamp +build: build-indep build-arch +build-indep: +build-arch: clean: dh_testdir dh_testroot - rm -f build-stamp configure-stamp - # Add here commands to clean up after the build process. - rm -f debian/cl-reversi.postinst.* debian/cl-reversi.prerm.* dh_clean install: build dh_testdir dh_testroot - dh_clean -k - # Add here commands to install the package into debian/reversi. - dh_installdirs -p $(debpkg) $(clc-systems) $(clc-reversi) - dh_install -p $(debpkg) reversi.asd $(shell echo *.lisp *.dat) $(clc-reversi) - dh_link -p $(debpkg) $(clc-reversi)/reversi.asd $(clc-systems)/reversi.asd - -# Build architecture-independent files here. -binary-indep: build install - + dh_prep + dh_installdirs + dh_install $(pkg).asd *.lisp *.dat $(clc-files) -# Build architecture-dependent files here. -binary-arch: build install +binary-indep: install dh_testdir dh_testroot dh_installdocs dh_installchangelogs - dh_strip + dh_lisp dh_compress dh_fixperms dh_installdeb - dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install configure +binary-arch: + +binary: binary-indep + + +.PHONY: build clean binary-indep binary-arch binary install