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
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
%:
dh $@ --with python2
override_dh_auto_install:
dh_auto_install
find debian/unknown-horizons -name "*.so" -delete
rm debian/unknown-horizons/usr/share/unknown-horizons/content/fonts/GPL_fontexception\
debian/unknown-horizons/usr/share/unknown-horizons/content/fonts/OFL
# Remove executable bit from files like tm_* and make Lintian happy
find debian/unknown-horizons/usr/share/unknown-horizons -type f -exec chmod a-x {} \;
override_dh_auto_build-indep:
convert -monitor -resize 32x32 $(CURDIR)/content/packages/unknown-horizons.xpm $(CURDIR)/unknown-horizons-32x32.xpm
get-orig-source:
uscan --force-download --download-current-version --repack --compression xz
|