Code

debian/rules: Added get-orig-source target.
[pkg-enblend.git] / debian / rules
1 #!/usr/bin/make -f
2 # debian/rules for enblend
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
16 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
17         CFLAGS += -O0
18 else
19         CFLAGS += -O2
20 endif
22 include /usr/share/dpatch/dpatch.make
24 get-orig-source:
25         dh_testdir
26         dh_testroot
27         chmod 755 debian/bin/uscan_repack.sh
28         uscan --verbose --force-download --rename
30 config.status: configure $(DPATCH_STAMPFN)
31         dh_testdir
32         CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) \
33                 --build=$(DEB_BUILD_GNU_TYPE) \
34                 --prefix=/usr --mandir=\$${prefix}/share/man
36 build: build-stamp
38 build-stamp:  config.status
39         dh_testdir
40         
41         $(MAKE)
42         
43         touch build-stamp
45 clean: unpatch
46         dh_testdir
47         dh_testroot
48         rm -f build-stamp 
49         
50         [ ! -f Makefile ] || $(MAKE) distclean
51         
52         dh_clean 
54 install: build
55         dh_testdir
56         dh_testroot
57         dh_clean -k 
58         dh_installdirs
59         
60         $(MAKE) DESTDIR=$(CURDIR)/debian/enblend install
62 binary-indep:
63         # nothing to do here
65 binary-arch: build install
66         dh_testdir
67         dh_testroot
68         dh_installchangelogs ChangeLog
69         dh_installdocs NEWS TODO AUTHORS
70         dh_installexamples
71         dh_installman
72         dh_installinfo doc/*.info
73         dh_link
74         dh_strip
75         dh_compress
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: get-orig-source build clean binary-indep binary-arch binary install