~ubuntu-desktop/rhythmbox/ubuntu

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: seb128
  • Date: 2009-08-10 12:07:55 UTC
  • Revision ID: seb128@seb128-laptop-20090810120755-e30rib1u0untn856
initial rhythmbox import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
 
 
3
include /usr/share/cdbs/1/rules/debhelper.mk
 
4
include /usr/share/cdbs/1/rules/simple-patchsys.mk
 
5
include /usr/share/cdbs/1/rules/utils.mk
 
6
include /usr/share/cdbs/1/class/gnome.mk
 
7
include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk
 
8
-include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk
 
9
 
 
10
# lirc support
 
11
DEB_CONFIGURE_EXTRA_FLAGS += --enable-lirc
 
12
# disable scrollkeeper-update in make install
 
13
DEB_CONFIGURE_EXTRA_FLAGS += --disable-scrollkeeper
 
14
 
 
15
# exclude plugins from shlibs generation
 
16
DEB_DH_MAKESHLIBS_ARGS_rhythmbox += -Xdebian/$(cdbs_curpkg)/usr/lib/rhythmbox
 
17
 
 
18
binary-install/rhythmbox::
 
19
        # kill *.a and *.la files of plugins and the shared lib
 
20
        find debian/rhythmbox -name '*.a' -exec rm -f '{}' ';'
 
21
        find debian/rhythmbox -name '*.la' -exec rm -f '{}' ';'
 
22
        dh_pysupport
 
23