File: rules

package info (click to toggle)
rust-exa 0.9.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,260 kB
  • sloc: sh: 192; makefile: 17
file content (21 lines) | stat: -rwxr-xr-x 432 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/make -f

include /usr/share/dpkg/pkg-info.mk

%:
	dh $@ --buildsystem cargo

override_dh_installman:
	help2man \
		--name exa \
		--no-info \
		--version-string $(DEB_VERSION_UPSTREAM) \
		debian/exa/usr/bin/exa > debian/exa.1
	dh_installman -O--buildsystem=cargo

override_dh_auto_test:
	dh_auto_test || true

override_dh_dwz:
	# Don't do anything. fails because of the
	# https://github.com/rust-lang/rust/issues/66118