X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=debian%2Frules;h=6c1fc465bcbed4bfa3c5d1c1af62cc16378e16ec;hb=4225ccb22d54d3f64d6cdce737f85ee72209ce69;hp=b6f1d5d286dce46159e5c2960b63d650b01d0c80;hpb=74341e8bf5398de6d9a48bcd39fe707000ec2b7b;p=umlisp.git diff --git a/debian/rules b/debian/rules index b6f1d5d..6c1fc46 100755 --- a/debian/rules +++ b/debian/rules @@ -1,68 +1,44 @@ #!/usr/bin/make -f -pkg := umlisp -debpkg := cl-umlisp - +pkg := umlisp +debpkg := cl-umlisp clc-source := usr/share/common-lisp/source clc-systems := usr/share/common-lisp/systems -clc-umlisp := $(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: 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-umlisp.postinst.* debian/cl-umlisp.prerm.* dh_clean install: build dh_testdir dh_testroot - dh_clean -k - # Add here commands to install the package into debian/umlisp. - dh_installdirs $(clc-systems) $(clc-umlisp) $(doc-dir) - dh_install umlisp.asd $(shell echo *.lisp) $(clc-umlisp) - #dh_install $(shell echo *.html) $(doc-dir) - dh_link $(clc-umlisp)/umlisp.asd $(clc-systems)/umlisp.asd + dh_prep + dh_installdirs + dh_install $(pkg).asd $(clc-files) + dh_install *.lisp $(clc-files) -# Build architecture-independent files here. -binary-indep: 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-arch: -# Build architecture-dependent files here. -binary-arch: build install +binary: binary-indep -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install configure +.PHONY: build clean binary-indep binary-arch binary install