#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_build:
	cargo build --workspace --release

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

override_dh_auto_test:
	echo tests are disabled, for now
