#!/usr/bin/make -f

BUILDHOME = $(CURDIR)/debian/build

%:
	dh $@ --with bash_completion

override_dh_clean:
	dh_clean
	rm -rf $(BUILDHOME)

override_dh_auto_test:
	mkdir -p $(BUILDHOME)
	TZ=UTC HOME=$(BUILDHOME) dh_auto_test -- TEST_VERBOSE=0
