#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_build:
	true

override_dh_auto_install:
	mkdir -p debian/repeatcmd/usr
	cargo install --locked --offline --path=. --root=debian/repeatcmd/usr
	find debian/*/ -name '.crates*.*' -delete

override_dh_auto_test:
	echo tests are disabled, for now
