#!/usr/bin/make -f export PYBUILD_NAME=sortedm2m %: dh $@ --buildsystem=pybuild execute_after_dh_auto_clean: find -name '.DS_Store' -print -delete override_dh_auto_install: dh_auto_install set -e; for python in $(shell py3versions -r); do \ rm -r debian/python3-sortedm2m/usr/lib/$$python/dist-packages/sortedm2m/static; \ rm -r debian/python3-sortedm2m/usr/lib/$$python/dist-packages/sortedm2m/templates; \ ln -s /usr/share/sortedm2m/static debian/python3-sortedm2m/usr/lib/$$python/dist-packages/sortedm2m/static; \ ln -s /usr/share/sortedm2m/templates debian/python3-sortedm2m/usr/lib/$$python/dist-packages/sortedm2m/templates; \ done override_dh_installchangelogs: dh_installchangelogs CHANGES.rst override_dh_installdocs: dh_installdocs -A AUTHORS.rst README.rst