blob: 5bcd86d12bcc07b36c87a5474aec5807b9b23fc5 (
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
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_CPPFLAGS_MAINT_APPEND = -DSSHD_SERVICE=\"ssh.service\"
export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,-z,defs -Wl,--as-needed
ifneq (,$(filter $(DEB_HOST_ARCH), amd64 arm64 armel armhf i386 mips mipsel mips64el ppc64el s390x hppa powerpc powerpcspe ppc64))
MALCONTENT := -Dmalcontent=true
else
MALCONTENT := -Dmalcontent=false
endif
%:
dh $@ --with gnome
# -Dgnome_session_libexecdir can be removed after Bullseye release
override_dh_auto_configure:
dh_auto_configure -- \
-Dprivileged_group=sudo \
-Ddocumentation=true \
$(MALCONTENT)
override_dh_missing:
dh_missing --fail-missing
|