mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2026-06-11 18:38:07 +00:00
b49cdf6118
As default might not be enough in some archs
25 lines
633 B
Makefile
Executable File
25 lines
633 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export DPKG_GENSYMBOLS_CHECK_LEVEL = 2
|
|
|
|
BUILDDIR = $(CURDIR)/obj-$(DEB_HOST_GNU_TYPE)
|
|
|
|
# Configuration arguments
|
|
CONFIG_ARGS = -Dudev_rules_dir=/lib/udev/rules.d -Dgtk-examples=false -Ddrivers=all
|
|
|
|
%:
|
|
dh $@ --with gir
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- $(CONFIG_ARGS)
|
|
|
|
override_dh_install:
|
|
mv debian/tmp/lib/udev/rules.d/60-libfprint-2-autosuspend.rules \
|
|
debian/tmp/lib/udev/rules.d/60-libfprint-2.rules
|
|
sed -i '/^Requires.private\|^Libs.private/ d' \
|
|
debian/tmp/usr/lib/*/pkgconfig/libfprint-2.pc
|
|
dh_install
|
|
|
|
override_dh_auto_test:
|
|
dh_auto_test -- -C $(BUILDDIR) --timeout-multiplier 5
|