blob: a341f53b9a822b2cf740d32a6c01bfcad32fa4fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/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
# List any files which are not installed
include /usr/share/cdbs/1/rules/utils.mk
common-binary-post-install-arch:: list-missing
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
|