1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
#!/usr/bin/make -f
# -*- makefile -*-
BANSHEE_VERSION = $(shell pkg-config --modversion banshee-thickclient)
override_dh_auto_configure:
dh_auto_configure -- \
--with-vendor-build-id="`lsb_release -ds`" \
--enable-gnome \
--enable-schemas-install \
--enable-alarmclock \
--enable-albumartwriter \
--enable-ampache \
--disable-appindicator \
--enable-awn \
--disable-clutterflow \
--enable-coverwallpaper \
--enable-duplicatesongdetector \
--enable-foldersync \
--enable-jamendo \
--disable-karaoke \
--enable-lastfmfingerprint \
--enable-lcd \
--enable-lirc \
--enable-lyrics \
--enable-liveradio \
--enable-magnatune \
--enable-mirage \
--enable-openvp \
--enable-radiostationfetcher \
--enable-randombylastfm \
--disable-streamrecorder \
--enable-telepathy \
--enable-zeitgeistdataprovider \
--disable-shave \
--enable-user-help \
DMCS=/usr/bin/mono-csc
override_dh_auto_install:
dh_auto_install
find debian/tmp \( -name '*.la' -o -name '*.a' \) -delete
override_dh_gencontrol:
dh_gencontrol -- -Vbanshee:Version=$(BANSHEE_VERSION)
override_dh_makeclilibs: # do nothing -- we do not want clilibs to come
# from anything, and especially not clutterflow.
override_dh_autoreconf: autogen.sh
NOCONFIGURE=1 dh_autoreconf ./autogen.sh --
autogen.sh: debian/autogen.sh
ln -s $< $@
clean:
rm -f autogen.sh
dh $@
override_dh_clideps:
dh_clideps \
--exclude-moduleref=libgdk-win32-2.0-0.dll \
--exclude-moduleref=glibsharpglue-2
%:
dh $@ --with cli,autoreconf
|