Add default Smack manifest for alsa-scenario.spec
[framework/multimedia/alsa-scenario-0.2.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 CFLAGS ?= -Wall 
21 LDFLAGS ?= 
22 PREFIX ?= /usr
23 DATADIR ?= /opt
24
25 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
26         CFLAGS += -O0 -g
27 else
28         CFLAGS += -O2
29 endif
30
31 # architecture is not arm
32 ifneq (, $(findstring arm, $(DEB_HOST_ARCH)))
33         # do something here
34 else
35         # do something here for arm architecture
36 endif
37
38 #LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed
39 LDFLAGS += -Wl,--rpath=$(PREFIX)/lib 
40
41 config.status: configure
42         dh_testdir
43         # Add here commands to configure the package.
44         CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" ./configure --prefix=$(PREFIX) 
45
46 build: build-stamp
47
48 build-stamp:  config.status
49         dh_testdir
50
51         # Add here commands to compile the package.
52         $(MAKE)
53         #docbook-to-man debian/ncurses.sgml > ncurses.1
54
55         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
56                 cat $$f > $${f%.in}; \
57                 sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \
58                 sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
59         done
60
61         touch $@
62
63 clean:
64         dh_testdir
65         dh_testroot
66         rm -f build-stamp 
67
68         # Add here commands to clean up after the build process.
69         -$(MAKE) distclean
70 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
71         cp -f /usr/share/misc/config.sub config.sub
72 endif
73 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
74         cp -f /usr/share/misc/config.guess config.guess
75 endif
76
77         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
78                 rm -f $${f%.in}; \
79         done
80
81         dh_clean 
82
83 install: build
84         dh_testdir
85         dh_testroot
86         dh_clean -k 
87         dh_installdirs
88
89         # Add here commands to install the package into debian/ncurses.
90         $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
91
92
93 # Build architecture-independent files here.
94 binary-indep: build install
95 # We have nothing to do by default.
96
97 # Build architecture-dependent files here.
98 binary-arch: build install
99         dh_testdir
100         dh_testroot
101         dh_installchangelogs 
102         dh_installdocs
103         dh_installexamples
104         dh_install --list-missing --sourcedir=debian/tmp
105 #       dh_installmenu
106 #       dh_installdebconf       
107 #       dh_installlogrotate
108 #       dh_installemacsen
109 #       dh_installpam
110 #       dh_installmime
111 #       dh_python
112 #       dh_installinit
113 #       dh_installcron
114 #       dh_installinfo
115         dh_installman
116         dh_link
117         dh_strip --dbg-package=libascenario-dbg
118         dh_compress
119         dh_fixperms
120 #       dh_perl
121         dh_makeshlibs
122         dh_installdeb
123         dh_shlibdeps
124         dh_gencontrol
125         dh_md5sums
126         dh_builddeb
127
128 binary: binary-indep binary-arch
129 .PHONY: build clean binary-indep binary-arch binary install