File: rules

package info (click to toggle)
bash-unit 2.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,304 kB
  • sloc: sh: 1,134; makefile: 10
file content (13 lines) | stat: -rwxr-xr-x 270 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/make -f
%:
	dh $@

execute_before_dh_clean:
	rm -rf tmpman
execute_before_dh_installdocs:
	asciidoctor -d manpage -b manpage -D tmpman README.adoc

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	./bash_unit -f tap ./tests/test_*
endif