blob: ac439819e09a454a66a9b1a65cab16e6c8d8475e (
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
|
#!/usr/bin/make -f
-include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk
CONFFLAGS = --libexecdir=/usr/lib -Denable-gtk-doc=true
# https://github.com/ebassi/graphene/issues/95
# https://github.com/ebassi/graphene/issues/97
ifneq (,$(filter $(DEB_BUILD_ARCH),i386))
CONFFLAGS += -Denable-sse2=false
else ifneq (,$(filter $(DEB_BUILD_ARCH),armhf))
CONFFLAGS += -Denable-arm-neon=false
endif
%:
dh $@ --with gir,gnome
override_dh_auto_configure:
dh_auto_configure -- $(CONFFLAGS)
override_dh_missing:
dh_missing --fail-missing
override_dh_makeshlibs:
dh_makeshlibs -V -- -c4
|