1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# build the jaguar core and m68k libraries first,
# then build the actual emulator
override_dh_auto_build:
make -f jaguarcore.mak V=1
make -C src/m68000 V=1
dh_auto_build -- V=1
# Convert icon to 32x32 for menu
xpmtoppm res/vj.xpm | \
pnmscale -xsize 32 -ysize 32 | \
ppmtoxpm -name vj_xpm-32x32 > debian/vj-32x32.xpm
# install docs/WHATSNEW as changelog.gz (Debian Policy 12.7)
override_dh_installchangelogs:
dh_installchangelogs docs/WHATSNEW
%:
dh $@
|