#!/usr/bin/make -f

%:
	dh $@ -Spybuild

override_dh_auto_build:
	python3 setup.py build_i18n

	dh_auto_build

override_dh_clean:
	dh_clean data/gourmet.appdata.xml data/gourmet.desktop

	find -name *.gourmet-plugin -delete
	find -name *.mo -delete

	-rm -rf src/gourmet.egg-info

# No tests for now
override_dh_auto_test:
