1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#!/usr/bin/make -f
# -*- mode: makefile; coding: utf-8 -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# minimise needless linking
export DEB_LDFLAGS_MAINT_APPEND= -Wl,--as-needed
%:
dh $@ --with autoreconf
override_dh_autoreconf:
dh_autoreconf -v --as-needed
override_dh_auto_install:
dh_auto_install
# move the AppStream metadata to the non-legacy location
mv debian/galculator/usr/share/appdata debian/galculator/usr/share/metainfo
override_dh_builddeb:
dh_builddeb -- -Zxz
|