1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#!/usr/bin/make -f
export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
%:
dh $@
# Multiarch is supported, but to support upgrades, the library needs to stay in
# the non-multiarch path for one release with a symlink from the multiarch
# path. See #850453.
override_dh_auto_configure:
dh_auto_configure -- --libdir='$${prefix}/lib' --libexecdir='$${prefix}/lib'
.PHONY: debian/qemubuilder.README.Debian
debian/qemubuilder.README.Debian:
w3m -dump 'http://wiki.debian.org/qemubuilder?action=raw' > $@.tmp
mv $@.tmp $@
|