#!/usr/bin/make -f

#export DH_VERBOSE=1

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -- pokerth.pro
	# upstream tarball has wrong permissions
	find data -type f -exec chmod 644 {} \;

override_dh_auto_install:
	# Ideally we should call make install here:
	# $(MAKE) install INSTALL_ROOT=$(CURDIR)/debian/tmp
	# but upstreams makefile does not work as intended here
