544cd05d13e0fb83f0d9118ce0f68142c2c11b4b
[external/popt.git] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 # This file was originally written by Joey Hess and Craig Small.
5 # As a special exception, when this file is copied by dh-make into a
6 # dh-make output file, you may use that output file without restriction.
7 # This special exception was added by Craig Small in version 0.37 of dh-make.
8
9 # Uncomment this to turn on verbose mode.
10 #export DH_VERBOSE=1
11
12
13 # These are used for cross-compiling and for saving the configure script
14 # from having to guess our platform (since we know it already)
15 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
16 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
17 DEB_HOST_ARCH       ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
18 DEB_HOST_ARCH_OS    ?= $(shell dpkg-architecture -qDEB_HOST_GNU_OS)
19
20 TARGET = popt_install
21
22 CFLAGS ?= -Wall -g
23 LDFLAGS ?= 
24 PREFIX ?= /usr
25 DATADIR ?= /opt
26
27 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
28         CFLAGS += -O0
29 else
30         CFLAGS += -O2
31 endif
32
33 # architecture is not arm
34 ifneq (, $(findstring arm, $(DEB_HOST_ARCH)))
35         # do something here
36 else
37         # do something here for arm architecture
38 endif
39
40 LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed
41
42 config.status: configure
43         dh_testdir
44         # Add here commands to configure the package. --build=$(DEB_BUILD_GNU_TYPE) 
45         CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" ./configure --prefix=$(PREFIX) --mandir=/usr/share/man
46
47 build: build-stamp
48
49 build-stamp:  config.status
50         dh_testdir
51         # Add here commands to compile the package.
52         $(MAKE)
53         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
54                 cat $$f > $${f%.in}; \
55                 sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \
56                 sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
57         done
58
59         touch $@
60
61 clean:
62         dh_testdir
63         dh_testroot
64         rm -f build-stamp 
65         rm -rf debian/$(TARGET)
66         # Add here commands to clean up after the build process.
67         -$(MAKE) distclean
68 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
69         cp -f /usr/share/misc/config.sub config.sub
70 endif
71 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
72         cp -f /usr/share/misc/config.guess config.guess
73 endif
74
75         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
76                 rm -f $${f%.in}; \
77         done
78
79         dh_clean 
80
81 install: build
82         dh_testdir
83         dh_testroot
84         dh_clean -k 
85         dh_installdirs
86
87         # Add here commands to install the package into debian/$(TARGET).
88         $(MAKE) DESTDIR=$(CURDIR)/debian/$(TARGET) install
89
90 # Build architecture-independent files here.
91 binary-indep: build install
92 # We have nothing to do by default.
93
94 # Build architecture-dependent files here.
95 binary-arch: build install
96         dh_testdir
97         dh_testroot
98         dh_installchangelogs
99         dh_installdocs
100         dh_installexamples
101         dh_install --list-missing --sourcedir=debian/$(TARGET)
102 #       dh_installmenu
103 #       dh_installdebconf       
104 #       dh_installlogrotate
105 #       dh_installemacsen
106 #       dh_installpam
107 #       dh_installmime
108 #       dh_python
109 #       dh_installinit
110 #       dh_installcron
111 #       dh_installinfo
112         dh_installman
113         dh_link
114         dh_strip
115         dh_compress
116         dh_fixperms
117 #       dh_perl
118         dh_makeshlibs
119         dh_installdeb
120         dh_shlibdeps
121         dh_gencontrol
122         dh_md5sums
123         dh_builddeb
124
125 binary: binary-indep binary-arch
126 .PHONY: build clean binary-indep binary-arch binary install