Code

patches: Removed asciidoc-8.4.dpatch.
[pkg-tig.git] / debian / rules
1 #!/usr/bin/make -f
2 # debian/rules for tig
3 #
4 # Written by Sebastian Harl <tokkee@debian.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
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)"
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         rm -f tig.1 tig.1.html tigrc.5 tigrc.5.html
48         rm -f NEWS.html README.html
49         
50         dh_clean 
52 install: build
53         dh_testdir
54         dh_testroot
55         dh_clean -k
56         dh_installdirs
57         
58         $(MAKE) install install-doc DESTDIR=$(CURDIR)/debian/tig
59         
60         mkdir -p debian/tig/etc/bash_completion.d
61         cp contrib/tig-completion.bash debian/tig/etc/bash_completion.d/tig
62         chmod 644 debian/tig/etc/bash_completion.d/tig
64 binary-indep:
65         # nothing to do here
67 binary-arch: build install
68         dh_testdir
69         dh_testroot
70         dh_installchangelogs
71         dh_installdocs NEWS BUGS TODO manual.pdf
72         dh_installexamples contrib/tigrc
73         dh_link
74         dh_strip
75         dh_compress -X.pdf
76         dh_fixperms
77         dh_installdeb
78         dh_shlibdeps
79         dh_gencontrol
80         dh_md5sums
81         dh_builddeb
83 binary: binary-indep binary-arch
84 .PHONY: build clean binary-indep binary-arch binary install