summaryrefslogtreecommitdiff
path: root/debian/rules
blob: 890794927b6ea2849284e306fe6fc4535c190a76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/make -f

%:
	dh $@ --buildsystem cargo

override_dh_auto_build:
	true

override_dh_auto_install:
	cargo install --path=. --root=debian/cachedir
	find debian/cachedir -name '.crates*' -delete

override_dh_auto_test:
	cargo test