2012-11-03 22:31:16 +03:00
|
|
|
#! /usr/bin/make -f
|
2010-10-27 05:00:25 +03:00
|
|
|
|
2012-11-03 22:31:16 +03:00
|
|
|
%:
|
|
|
|
dh $@
|
|
|
|
|
|
|
|
# override disabled by default rpath - we need to find libvcmi.so with it:
|
|
|
|
override_dh_auto_configure:
|
2014-07-07 09:16:28 +03:00
|
|
|
dh_auto_configure -- -DCMAKE_SKIP_RPATH=OFF -DCMAKE_BUILD_TYPE=RelWithDebInfo -DENABLE_SDL2=OFF -DBIN_DIR=games
|
2013-12-03 12:03:37 +03:00
|
|
|
.PHONY: override_dh_strip
|
|
|
|
override_dh_strip:
|
|
|
|
dh_strip --dbg-package=vcmi-dbg
|
|
|
|
override_dh_auto_install:
|
|
|
|
dh_auto_install --destdir=debian/vcmi
|
|
|
|
override_dh_installdocs:
|
|
|
|
dh_installdocs --link-doc=vcmi
|
|
|
|
|