#!/usr/bin/make -f
# -*- makefile -*-
export PY=python3

%:
	dh  $@

# do not remove fonts shipped by upstream, as they will be the fonts to be 
# installed:
override_dh_auto_clean:

# backup upstream shipped fonts before building:
override_dh_auto_build:
	cp -a fonts fonts.orig
	dh_auto_build

# remove fonts built by Debian after running tests, and restore upstream 
# shipped fonts:
override_dh_auto_test:
	dh_auto_test
	rm -rf fonts/
	mv fonts.orig fonts
