#!/usr/bin/make -f

export PREFIX=/usr

ifeq ($(DEB_HOST_ARCH_CPU),$(filter $(DEB_HOST_ARCH_CPU),amd64))
	export BUILD_PROFILE=x86_64
else
	export BUILD_PROFILE=i586
endif

%:
	dh $@

#override_dh_auto_test:
	# the test suite requires build options incompatible with what we
	# ship in the package, so disable until upstream resolves this
