#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

%:
	dh $@ --with python2

override_dh_python2:
	dh_python2
	rm -rf $(CURDIR)/debian/python-tomahawk/tmp

override_dh_auto_test:
	py.test -v tomahawk tests/internal

override_dh_installchangelogs:
	dh_installchangelogs Changes

override_dh_clean:
	dh_clean
	rm -rf $(CURDIR)/tmp
