File: rules

package info (click to toggle)
banshee-community-extensions 2.4.0-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 7,860 kB
  • sloc: cs: 40,928; sh: 11,225; cpp: 1,805; makefile: 1,070; xml: 848; ansic: 450
file content (65 lines) | stat: -rwxr-xr-x 1,569 bytes parent folder | download
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