mirror of
https://git.themanaworld.org/mana/verse
synced 2026-08-16 04:23:07 -04:00
20 lines
522 B
Makefile
Executable file
20 lines
522 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
|
|
DEB_CONFIGURE_EXTRA_FLAGS := \
|
|
--bindir=/usr/games
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- $(DEB_CONFIGURE_EXTRA_FLAGS)
|
|
|
|
override_dh_strip:
|
|
dh_strip -a --dbg-package=manaplus-dbg
|
|
|
|
override_dh_install:
|
|
dh_install
|
|
rm -f $(CURDIR)/debian/manaplus-data/usr/share/manaplus/data/themes/jewelry/LICENSE.txt
|
|
rm -f $(CURDIR)/debian/manaplus-data/usr/share/manaplus/data/themes/golden-delicious/LICENSE.txt
|
|
|
|
%:
|
|
dh $@ --parallel --with autoreconf
|