1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
include /usr/share/dpkg/architecture.mk
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
DEB_BUILD_PARALLEL = 1
DEB_INSTALL_DOCS_ALL = README.md
%:
dh $@ --without autoreconf --buildsystem=meson
override_dh_auto_configure:
dh_auto_configure -- \
--libexecdir=/usr/lib/$(DEB_HOST_MULTIARCH)/brisk-menu/
common-binary-post-install-arch:: list-missing
get-orig-source:
uscan --noconf --force-download --rename --download-current-version --destdir=..
|