#!/usr/bin/make -f include /usr/share/dpkg/pkg-info.mk export DH_GOLANG_EXCLUDES := example %: dh $@ --builddirectory=debian/_build override_dh_auto_test: ifneq (,$(filter ppc64el riscv64 s390x,$(DEB_HOST_ARCH))) @echo "tests on $(DEB_HOST_ARCH) are not officially supported from upstream." xvfb-run -a dh_auto_test || true else ifeq ($(DEB_HOST_ARCH),armhf) @echo "Skipping TestCaptureRect on armhf to avoid FAIL in autopkgtest." xvfb-run -a dh_auto_test -- -skip TestCaptureRect else xvfb-run -a dh_auto_test endif