summaryrefslogtreecommitdiff
path: root/debian/rules
blob: 72b5379c438c5fbe118b270ec54f5ced895aabbc (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:
	cargo build --release

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

override_dh_auto_test:
	true