File: rules

package info (click to toggle)
golang-github-shenwei356-breader 0.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 92 kB
  • sloc: makefile: 8
file content (11 lines) | stat: -rwxr-xr-x 291 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/make -f

%:
	dh $@ --builddirectory=_build --buildsystem=golang --with=golang

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	cp testdata*.tsv _build/src/github.com/shenwei356/breader/
	dh_auto_test
	rm _build/src/github.com/shenwei356/breader/*.tsv
endif