blob: 1a9056c20aa61b28fef6a971ad494022aa9bcf77 (
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
|
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,-z,defs
%:
dh $@ --with bash_completion
ifeq ($(DEB_HOST_ARCH_OS),linux)
CONFFLAGS = \
-Dnetworkmanager=true \
-Dsystemd=true
endif
override_dh_auto_configure:
dh_auto_configure -- \
--libdir=/usr/lib \
-Dbash_completion=true \
$(CONFFLAGS)
override_dh_makeshlibs:
dh_makeshlibs -X/usr/lib/gnome-shell/
override_dh_shlibdeps:
# gnome-shell uses mutters private mutter-clutter-1.0.so etc.
dh_shlibdeps -l"usr/lib/$(DEB_HOST_MULTIARCH)/mutter"
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
dbus-run-session xvfb-run -a dh_auto_test
endif
|