mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2026-06-11 02:28:05 +00:00
26 lines
522 B
Makefile
Executable File
26 lines
522 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_hwdb_dir=/lib/udev/hwdb.d \
|
|
-Ddrivers=all \
|
|
-Dgtk-examples=false
|
|
|
|
%:
|
|
dh $@ --with gir
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- $(CONFIG_ARGS)
|
|
|
|
override_dh_install:
|
|
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
|