#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_build:
	true

override_dh_auto_install:
	cargo install --path=. --root=debian/obnam --offline --locked
	find debian -name '.crates*' -delete
	find debian/obnam/bin -type f ! -name 'obnam*' -delete

override_dh_auto_test:
	echo disabled: ./check
