#!/usr/bin/make -f

export PYBUILD_NAME=Mailnag

%:
	dh $@ --with python3 --buildsystem=pybuild

override_dh_clean:
	rm -rf $(CURDIR)/build
	find $(CURDIR) -name *.pyc -delete
	dh_clean

override_dh_installchangelogs:
	dh_installchangelogs NEWS
