#!/usr/bin/make -f

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

d	= debian/virtaal

%:
	dh $@ --with python2

clean:
	rm -f build-stamp
	rm -rf build
	rm -f MANIFEST.in
	-find -name '*.py[co]' | xargs rm -f
	dh_clean

override_dh_auto_install:
	python setup.py install --nodepcheck --prefix=`pwd`/$(d)/usr
