blob: d778ba11d9932ff52ef9ba9ed2c47cd2dafcb48c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/make -f
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/gnome.mk
include /usr/share/cdbs/1/rules/simple-patchsys.mk
include /usr/share/cdbs/1/rules/autoreconf.mk
# List any files which are not installed
include /usr/share/cdbs/1/rules/utils.mk
common-binary-post-install-arch:: list-missing
LDFLAGS += -Wl,-z,defs -Wl,-O1 -Wl,--as-needed
DEB_DH_MAKESHLIBS_ARGS = -Xusr/lib/indicators
binary-install/indicator-sound::
# remove .a/.la clutter
rm -f debian/$(cdbs_curpkg)/usr/lib/indicators/*/*.a
rm -f debian/$(cdbs_curpkg)/usr/lib/indicators/*/*.la
|