#!/usr/bin/make -f
#export DH_VERBOSE=1

%:
	dh $@ -Scmake

execute_after_dh_clean:
	rm -rf po/*.mo

execute_after_dh_auto_install:
	# cmake seems not to have an option for moving binaries, doing it manually
	mv debian/ballerburg/usr/bin debian/ballerburg/usr/games
	# put the game data files to the game data directory
	mkdir -p debian/ballerburg/usr/share/games/
	mv debian/ballerburg/usr/share/ballerburg debian/ballerburg/usr/share/games/

override_dh_auto_test:
	@echo blip
