#!/usr/bin/make -f
#export DH_VERBOSE=1
export PYBUILD_NAME=astropy-helpers
export http_proxy = http://127.0.9.1:9

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

override_dh_auto_install:
	dh_auto_install
	find $(CURDIR)/debian/python3-astropy-helpers/usr/lib/ -name \*.png -exec rm {} \;

override_dh_installchangelogs:
	dh_installchangelogs CHANGES.rst

override_dh_installdocs:
	dh_installdocs README.rst
