1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#! /usr/bin/make -f
#export DH_VERBOSE=1
#export DEB_BUILD_OPTIONS="nostrip"
DEB_BINARY_VERSION := $(shell dpkg-parsechangelog | sed -n 's/^Version: //p')
%:
dh $@ --with autoreconf
override_dh_clean:
dh_clean
# Delete the vala stamps, so that valac will always rebuild all sources.
find . -name "*_vala.stamp" -delete
override_dh_auto_install:
dh_auto_install --destdir=debian/systemd-ui
override_dh_gencontrol:
dh_gencontrol -psystemd-gui -- -v'1:$(DEB_BINARY_VERSION)'
dh_gencontrol --remaining-packages
|