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

%:
	dh $@ --buildsystem=cmake

override_dh_auto_clean:
	rm -f standalone/helm.appdata.xml
	dh_auto_clean

override_dh_auto_configure:
	cp -f debian/helm.appdata.xml standalone/
	dh_auto_configure -- \
		-DCMAKE_BUILD_TYPE=Release \
		-DCMAKE_INSTALL_LIBDIR=lib

override_dh_compress:
	dh_compress -X.pdf
