X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=debian%2Frules;fp=debian%2Frules;h=bf6e7a269ec5a6ee3a15f43eda27f1a92e3db939;hb=d31d113e9228b43d2b7e6dfb2a0a78cd758989c3;hp=ceae06e9991380c7de25217f083be7adf00fd45a;hpb=dc270e25d468faa83f8ae06d705d8a595978719e;p=pkg-tig.git diff --git a/debian/rules b/debian/rules index ceae06e..bf6e7a2 100755 --- a/debian/rules +++ b/debian/rules @@ -6,7 +6,12 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -CFLAGS = -Wall -g +# 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 -I/usr/include/ncursesw ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 @@ -14,23 +19,32 @@ else CFLAGS += -O2 endif -include /usr/share/dpatch/dpatch.make +config.status: configure + dh_testdir + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \ + --prefix=/usr --mandir=\$${prefix}/share/man --sysconfdir=/etc \ + CFLAGS="$(CFLAGS)" LIBS="-lncursesw" build: build-stamp -build-stamp: patch +build-stamp: config.status dh_testdir - CFLAGS="$(FLAGS)" $(MAKE) all doc + $(MAKE) all doc touch build-stamp -clean: unpatch +clean: dh_testdir 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 dh_clean @@ -40,8 +54,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 @@ -51,7 +68,7 @@ binary-arch: build install dh_testroot dh_installchangelogs dh_installdocs BUGS TODO manual.pdf - dh_installexamples tigrc + dh_installexamples contrib/tigrc dh_link dh_strip dh_compress -X.pdf