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 27 28 29
|
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
%:
dh $@ --with autoreconf
override_dh_auto_configure:
dh_auto_configure -- --disable-silent-rules
override_dh_auto_build:
convert -resize 32x32 data/icons/hexchat.png debian/hexchat.xpm
gzip -c9 debian/changelog.txt > debian/changelog.gz
dh_auto_build
override_dh_auto_clean:
rm -f po/*.gmo
rm -f src/common/dbus/org.hexchat.service.service
rm -f src/common/textenums.h
rm -f src/common/textevents.h
rm -f src/common/make-te
rm -f po/stamp-po
rm -f debian/substvars
rm -f debian/changelog.gz
rm -f debian/hexchat.xpm
dh_auto_clean
|