X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=debian%2Frules;h=5e64849bf5e66fbb6804b7f667411d18f2a16ed2;hb=8edbf702e1e9424af68c30fe3e11fd3a8d70caaa;hp=00d477f8020ec12d6a09ad549853d295bc40dd7a;hpb=e4eaba5eab623b020ff3ee4b5dce2bc99b203d60;p=uffi.git diff --git a/debian/rules b/debian/rules index 00d477f..5e64849 100755 --- a/debian/rules +++ b/debian/rules @@ -6,7 +6,7 @@ # export DH_VERBOSE=1 # This is the debhelper compatibility version to use. -export DH_COMPAT=3 +export DH_COMPAT=4 pkg := uffi debpkg := cl-uffi @@ -16,8 +16,7 @@ INSTALL := install INSTALLFLAGS := -g root -o root -m 0644 INSTALLDIRFLAGS := -d -g root -o root -m 0755 -SOURCEDIR := $(prefix)/usr/share/common-lisp/source -REPOSITORYDIR := $(prefix)/usr/share/common-lisp/repositories/${pkg} +SOURCEDIR := $(prefix)/usr/share/common-lisp/source/${pkg} DOCDIR := $(prefix)/usr/share/doc/${debpkg} @@ -35,7 +34,8 @@ build-stamp: configure-stamp dh_testdir # Add here commands to compile the package. - $(MAKE) doc + # Make doc isn't necessary because the docs are in the upstream version + # $(MAKE) doc touch build-stamp @@ -57,14 +57,14 @@ install: build dh_installdirs # Add here commands to install the package into debian/uffi. - $(INSTALL) $(INSTALLFLAGS) $(shell echo src/*.cl *.system) $(REPOSITORYDIR) - $(INSTALL) $(INSTALLFLAGS) $(shell echo src/mcl/*.cl) $(REPOSITORYDIR)/mcl + $(INSTALL) $(INSTALLFLAGS) $(shell echo src/*.cl *.system) $(SOURCEDIR) + $(INSTALL) $(INSTALLFLAGS) $(shell echo src/mcl/*.cl) $(SOURCEDIR)/mcl $(INSTALL) $(INSTALLFLAGS) doc/html/* $(DOCDIR)/html - cp doc/uffi.ps doc/cl-uffi.ps - rm -f doc/cl-uffi.ps.gz - gzip doc/cl-uffi.ps - $(INSTALL) $(INSTALLFLAGS) doc/cl-uffi.ps.gz $(DOCDIR) - rm -f doc/cl-uffi.ps.gz + cp doc/uffi.pdf doc/cl-uffi.pdf + rm -f doc/cl-uffi.pdf.gz + gzip doc/cl-uffi.pdf + $(INSTALL) $(INSTALLFLAGS) doc/cl-uffi.pdf.gz $(DOCDIR) + rm -f doc/cl-uffi.pdf.gz # Build architecture-independent files here. binary-indep: build install