Code

Added -I/usr/include/ncursesw to CFLAGS.
[pkg-tig.git] / debian / rules
1 #!/usr/bin/make -f
2 # debian/ruls for tig
3 #
4 # Written by Sebastian Harl <sh@tokkee.org>
6 # Uncomment this to turn on verbose mode.
7 #export DH_VERBOSE=1
9 # These are used for cross-compiling and for saving the configure script
10 # from having to guess our platform (since we know it already)
11 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
12 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
14 CFLAGS = -Wall -g -I/usr/include/ncursesw
16 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
17         CFLAGS += -O0
18 else
19         CFLAGS += -O2
20 endif
22 config.status: configure
23         dh_testdir
24         ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
25                 --prefix=/usr --mandir=\$${prefix}/share/man --sysconfdir=/etc \
26                 CFLAGS="$(CFLAGS)" LIBS="-lncursesw"
28 build: build-stamp
30 build-stamp: config.status
31         dh_testdir
32         
33         $(MAKE) all doc
34         
35         touch build-stamp
37 clean:
38         dh_testdir
39         dh_testroot
40         rm -f build-stamp
41         
42         $(MAKE) clean
43         
44         rm -f config.h config.log config.make config.status
45         rm -rf manual.html-chunked/
46         rm -f manual.pdf manual.html manual.toc
47         
48         dh_clean 
50 install: build
51         dh_testdir
52         dh_testroot
53         dh_clean -k
54         dh_installdirs
55         
56         $(MAKE) install install-doc DESTDIR=$(CURDIR)/debian/tig
57         
58         mkdir -p debian/tig/etc/bash_completion.d
59         cp contrib/tig-completion.bash debian/tig/etc/bash_completion.d/tig
60         chmod 644 debian/tig/etc/bash_completion.d/tig
62 binary-indep:
63         # nothing to do here
65 binary-arch: build install
66         dh_testdir
67         dh_testroot
68         dh_installchangelogs
69         dh_installdocs BUGS TODO manual.pdf
70         dh_installexamples contrib/tigrc
71         dh_link
72         dh_strip
73         dh_compress -X.pdf
74         dh_fixperms
75         dh_installdeb
76         dh_shlibdeps
77         dh_gencontrol
78         dh_md5sums
79         dh_builddeb
81 binary: binary-indep binary-arch
82 .PHONY: build clean binary-indep binary-arch binary install patch unpatch