diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 14:36:24 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 14:36:24 +0000 |
commit | 200a1c0e13bdf4612a6343f1495beaf3d006353d (patch) | |
tree | fa49568e280a8dc225a234746c0797b2504f927b /debian/rules | |
parent | Adding upstream version 1:3.38.4. (diff) | |
download | gnome-control-center-debian.tar.xz gnome-control-center-debian.zip |
Adding debian version 1:3.38.4-1.debian/1%3.38.4-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rwxr-xr-x | debian/rules | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..5bcd86d --- /dev/null +++ b/debian/rules @@ -0,0 +1,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 |