#!/usr/bin/make -f
# -*- gmakefile -*-

DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

%:
	dh $@ --with autoreconf

override_dh_auto_test:
	mkdir -p debian/dot-gnupg
	chmod og-rx debian/dot-gnupg
	echo debug-disable-ticker >debian/dot-gnupg/scdaemon.conf
	GNUPGHOME=${CURDIR}/debian/dot-gnupg gpg-agent --daemon dh_auto_test
	rm -rf debian/dot-gnupg

override_dh_auto_install:
	dh_auto_install --destdir=debian/tmp
	mkdir -p debian/tmp/usr/lib/${DEB_HOST_MULTIARCH}/scute
	mv debian/tmp/usr/lib/${DEB_HOST_MULTIARCH}/scute.so \
		debian/tmp/usr/lib/${DEB_HOST_MULTIARCH}/scute/
