1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#!/usr/bin/make -f
#export DH_VERBOSE=1
%:
dh $@ --no-parallel
override_dh_auto_configure:
dh_auto_configure -- \
--prefix=/usr \
--mandir=\$${prefix}/share/man \
--with-data-dir=\$${prefix}/share/games/adonthell \
--with-adonthell-binary=/usr/games/adonthell \
--bindir=\$${prefix}/games \
--disable-pyc
override_dh_auto_install:
dh_auto_install -- \
DESTDIR="$(CURDIR)/debian/adonthell-data"
# Remove empty directories
find . -type d -empty -delete
get-orig-source:
uscan --download-current-version --force-download
|