Code

a27cec800b9acca2e42de42d1b05fad617d50e1d
[pkg-enblend.git] / debian / rules
1 #!/usr/bin/make -f
2 # debian/rules for enblend-enfuse
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 \
35                 --enable-gpu-support \
36                 --disable-openmp \
37                 --enable-image-cache \
38                 --with-openexr
40 build: build-stamp
42 build-stamp:  config.status
43         dh_testdir
44         
45         $(MAKE)
46         
47         touch build-stamp
49 clean: unpatch
50         dh_testdir
51         dh_testroot
52         rm -f build-stamp
53         
54         [ ! -f Makefile ] || $(MAKE) distclean
55         rm -f doc/*.info
56         
57         dh_clean
59 install: build
60         dh_testdir
61         dh_testroot
62         dh_clean -k
63         dh_installdirs
64         
65         $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
66         rm -f $(CURDIR)/debian/tmp/usr/share/info/dir
68 binary-indep:
69         # nothing to do here
71 binary-arch: build install
72         dh_testdir
73         dh_testroot
74         dh_installchangelogs -a ChangeLog
75         dh_installdocs -A -a NEWS AUTHORS
76         dh_installexamples -a
77         dh_install -a --sourcedir=debian/tmp --fail-missing
78         dh_installman -a
79         dh_installinfo -penblend doc/enblend.info
80         dh_installinfo -penfuse doc/enfuse*.info
81         dh_link -a
82         dh_strip -a
83         dh_compress -a
84         dh_fixperms -a
85         dh_installdeb -a
86         dh_shlibdeps -a
87         dh_gencontrol -a
88         dh_md5sums -a
89         dh_builddeb -a
91 binary: binary-indep binary-arch
92 .PHONY: get-orig-source build clean binary-indep binary-arch binary install