#!/usr/bin/make -f

PACKAGE	= $(shell dh_listpackages)
TMP     = $(CURDIR)/debian/$(PACKAGE)

%:
	dh $@ --with python2

override_dh_auto_configure:
	./configure --prefix=$(TMP)/usr --confdir=$(TMP)/etc

override_dh_python2:
	dh_python2
	rm -rf $(TMP)/usr/share/python

.PHONY: override_dh_python2
