#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	# backup and restore test data
	cp $(CURDIR)/Dustismo_Sans.ttf $(CURDIR)/Dustismo_Sans.ttf.save
	dh_auto_test
	mv $(CURDIR)/Dustismo_Sans.ttf.save $(CURDIR)/Dustismo_Sans.ttf
endif
