1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
#!/usr/bin/make -f
include /usr/share/dpkg/pkg-info.mk
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
# Pass the Debian package version
export VERSION := ${DEB_VERSION}
%:
dh $@
override_dh_auto_install:
dh_auto_install -- prefix=/usr
override_dh_auto_test:
@echo "Skipping test suite"
# Simple sanity check that program can be run
./qdl -v
./qdl -h
override_dh_install:
help2man -N -n "Qualcomm Download" -o qdl.1 ./qdl
dh_install
|