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

%:
	dh $@ --buildsystem cargo

override_dh_auto_clean:
	true

override_dh_auto_build:
	echo "$$PATH"
	command -v cargo
	command -v rustc
	true

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