Skip to content
Commits on Source (4)
mate-settings-daemon (1.22.0-2) unstable; urgency=medium
* debian/control:
+ Add B-D: dh-exec.
* debian/rules:
+ Add --disable-rfkill configure option on non-Linux host archs.
* debian/mate-settings-daemon-common.install:
+ Use dh-exec; omit installation of udev rules as they don't get created
when --disable-rfkill configure option is used on non-Linux host archs.
-- Mike Gabriel <sunweaver@debian.org> Sun, 04 Aug 2019 12:46:49 +0200
mate-settings-daemon (1.22.0-1) unstable; urgency=medium
[ Martin Wimpress ]
......
......@@ -7,6 +7,7 @@ Uploaders: Mike Gabriel <sunweaver@debian.org>,
Stefano Karapetsas <stefano@karapetsas.com>,
Vangelis Mouhtsis <vangelis@gnugr.org>,
Build-Depends: debhelper (>= 10.3~),
dh-exec,
dpkg-dev (>= 1.16.1.1),
intltool,
libcanberra-gtk3-dev,
......
usr/lib/udev/rules.d/ lib/udev
#! /usr/bin/dh-exec
[linux-any] usr/lib/udev/rules.d/ lib/udev
usr/share/glib-2.0/
usr/share/icons/
usr/share/locale/
......
......@@ -6,6 +6,14 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
DEB_HOST_ARCH_OS?=$(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
ifeq (,$(filter linux, $(DEB_HOST_ARCH_OS)))
WITHOUT_RFKILL = "--disable-rfkill"
else
WITHOUT_RFKILL = ""
endif
%:
dh $@ $(DHFLAGS) --without autoreconf
......@@ -23,6 +31,7 @@ override_dh_auto_configure:
--disable-silent-rules \
--libexecdir=/usr/bin \
--disable-static \
$(WITHOUT_RFKILL) \
--enable-pulse
override_dh_makeshlibs:
......