#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_build:
	true

override_dh_auto_install:
	cargo install --offline --locked --path=. --root=debian/wumpus-hunter
	rm -f debian/*/.crates*.*

override_dh_auto_test:
	echo tests are disabled, for now
