File: rules

package info (click to toggle)
gnome-shell 3.30.2-11~deb10u2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 15,524 kB
  • sloc: javascript: 46,803; ansic: 43,826; xml: 1,337; sh: 370; makefile: 87; python: 21; perl: 13
file content (47 lines) | stat: -rwxr-xr-x 1,151 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
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,-z,defs -Wl,--as-needed

%:
	dh $@ --with gir,gnome

ifeq ($(DEB_HOST_ARCH_OS),linux)
CONFFLAGS = \
	-Denable-networkmanager=yes \
	-Denable-systemd=yes
endif

override_dh_auto_configure:
	dh_auto_configure -- \
		--libdir=/usr/lib \
		--libexecdir=/usr/lib/gnome-shell \
		$(CONFFLAGS)

override_dh_missing:
	dh_missing --fail-missing

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_strip:
	dh_strip --dbgsym-migration='gnome-shell-dbg (<< 3.20.2-2~)'

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	# Avoid test failures on buildd environments where HOME,
	# XDG_RUNTIME_DIR might be invalid
	mkdir -p -m700 $(CURDIR)/debian/home/run
	env \
		-u XDG_CACHE_HOME \
		-u XDG_CONFIG_DIRS \
		-u XDG_CONFIG_HOME \
		-u XDG_DATA_HOME \
		HOME=$(CURDIR)/debian/home \
		XDG_RUNTIME_DIR=$(CURDIR)/debian/home/run \
		xvfb-run -a dh_auto_test
endif