Code

Added -I/usr/include/ncursesw to CFLAGS.
[pkg-tig.git] / debian / rules
index ec84d33719f356a117c9c5bf0abd17396f6c2777..f76af1df1704b7e17d1e78aa5b6a33d28cfe4994 100755 (executable)
@@ -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,12 +19,18 @@ else
        CFLAGS += -O2
 endif
 
+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:
+build-stamp: config.status
        dh_testdir
        
-       CFLAGS="$(FLAGS)" $(MAKE) all doc
+       $(MAKE) all doc
        
        touch build-stamp
 
@@ -28,7 +39,11 @@ clean:
        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
        
        dh_clean 
 
@@ -38,8 +53,7 @@ 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