File: rules

package info (click to toggle)
rust-process-viewer 0.5.9-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 424 kB
  • sloc: xml: 50; makefile: 15
file content (14 lines) | stat: -rwxr-xr-x 332 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/make -f
%:
	dh $@ --buildsystem cargo

ifeq ($(DEB_HOST_ARCH),mipsel)
override_dh_auto_test:
	echo tests are disabled on mipsel due to running out of address space.

execute_after_dh_auto_configure:
	sed -i s/debuginfo=2/debuginfo=1/ debian/cargo_home/config
else
override_dh_auto_test:
	dh_auto_test -- test --all
endif