File: rules

package info (click to toggle)
golang-github-d-tux-go-fstab 0.0.0%2Bgit.2014.12.04.eb4090f265-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 80 kB
  • sloc: makefile: 11
file content (18 lines) | stat: -rwxr-xr-x 418 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/make -f

export DH_GOPKG := github.com/d-tux/go-fstab
export DH_GOLANG_INSTALL_ALL := 1

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

override_dh_auto_test:
	@echo "Tests are disabled for now"

override_dh_install:
	dh_install
	for i in LICENSE README.md .travis.yml .gitignore ; do \
		rm -f $(CURDIR)/debian/golang-github-d-tux-go-fstab-dev/usr/share/gocode/src/github.com/d-tux/go-fstab/$$i ; \
	done