aboutsummaryrefslogtreecommitdiff
path: root/debian/rules
blob: 8df3a90c9108e4279bfaecde7175b005b54b92e3 (plain)
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
#!/usr/bin/make -f

FLAVORS = gtk2 gtk3

CONFIGURE_FLAGS_gtk2 = --with-gtk=2
CONFIGURE_FLAGS_gtk3 = --with-gtk=3

LDFLAGS += -Wl,-z,defs -Wl,--as-needed

export G_MESSAGES_DEBUG = all

%:
	dh $@ --with autoreconf

override_dh_auto_configure: $(FLAVORS:%=doconfigure-%)

doconfigure-%:
	DH_VERBOSE=1 dh_auto_configure --builddirectory=builddir/$* -- $(CONFIGURE_FLAGS_$*)

override_dh_auto_build: $(FLAVORS:%=dobuild-%)

dobuild-%:
	dh_auto_build --builddirectory=builddir/$*

override_dh_auto_install: $(FLAVORS:%=doinstall-%)

doinstall-%:
	dh_auto_install --builddirectory=builddir/$* --destdir=debian/tmp/$*

override_dh_install:
	find debian/tmp -name \*.la -delete
	find debian/tmp -name libdummy-indicator\* -delete
	rm -f debian/tmp/gtk3/usr/share/libindicator/80indicator-debugging
	dh_install --fail-missing

override_dh_makeshlibs:
	dh_makeshlibs -plibindicator7 -V 'libindicator7 (>= 0.4.90)'
	dh_makeshlibs -plibindicator3-7 -V 'libindicator3-7 (>= 0.4.90)'