X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=debian%2Frules;h=969f53ddfe8384586bdf58efcdf2e3eab1e0fccd;hb=3123fbd6d445b298d895d0aa404fb593bab1286a;hp=721ab264519c4cc1c9414cef07745a7f4c85d923;hpb=4e8fb87f815ef2bdcd3bf509a188b3ec26e6708d;p=pkg-tig.git diff --git a/debian/rules b/debian/rules index 721ab26..969f53d 100755 --- a/debian/rules +++ b/debian/rules @@ -1,11 +1,16 @@ #!/usr/bin/make -f -# debian/ruls for tig +# debian/rules for tig # -# Written by Sebastian Harl +# Written by Sebastian Harl # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + CFLAGS = -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) @@ -16,12 +21,18 @@ endif include /usr/share/dpatch/dpatch.make +config.status: configure $(DPATCH_STAMPFN) + dh_testdir + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \ + --prefix=/usr --mandir=\$${prefix}/share/man --sysconfdir=/etc \ + CFLAGS="$(CFLAGS)" + build: build-stamp -build-stamp: patch +build-stamp: config.status dh_testdir - CFLAGS="$(FLAGS)" $(MAKE) all doc + $(MAKE) all doc touch build-stamp @@ -30,7 +41,13 @@ clean: unpatch dh_testroot rm -f build-stamp - -$(MAKE) clean + $(MAKE) clean + + rm -f config.h config.log config.make config.status + rm -rf manual.html-chunked/ + rm -f manual.pdf manual.html manual.toc + rm -f tig.1 tig.1.html tigrc.5 tigrc.5.html + rm -f NEWS.html README.html dh_clean @@ -40,8 +57,11 @@ install: build dh_clean -k dh_installdirs - $(MAKE) install install-doc DESTDIR=$(CURDIR)/debian/tig \ - prefix=/usr mandir=/usr/share/man + $(MAKE) install install-doc DESTDIR=$(CURDIR)/debian/tig + + mkdir -p debian/tig/etc/bash_completion.d + cp contrib/tig-completion.bash debian/tig/etc/bash_completion.d/tig + chmod 644 debian/tig/etc/bash_completion.d/tig binary-indep: # nothing to do here @@ -50,11 +70,11 @@ binary-arch: build install dh_testdir dh_testroot dh_installchangelogs - dh_installdocs BUGS TODO manual.pdf - dh_installexamples tigrc + dh_installdocs NEWS BUGS TODO manual.pdf + dh_installexamples contrib/tigrc dh_link dh_strip - dh_compress + dh_compress -X.pdf dh_fixperms dh_installdeb dh_shlibdeps @@ -63,5 +83,5 @@ binary-arch: build install dh_builddeb binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install patch unpatch +.PHONY: build clean binary-indep binary-arch binary install