#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_build:
	true

override_dh_auto_install:
	cargo install --path=. --root=debian/ewww --offline
	install -d debian/ewww/lib/systemd/system
	install -m 0644 ewww.service debian/ewww/lib/systemd/system/ewww.service
	rm -f debian/ewww/.crates.toml
	rm -f debian/ewww/.crates2.json

override_dh_auto_test:
	echo NOT running ./check as part of Debian package build because my CI is crap
