Codebase list golang-github-gobuffalo-packr / 7083bcf8-044b-43c4-aef5-54323b1e40a4/main debian / rules
7083bcf8-044b-43c4-aef5-54323b1e40a4/main

Tree @7083bcf8-044b-43c4-aef5-54323b1e40a4/main (Download .tar.gz)

rules @7083bcf8-044b-43c4-aef5-54323b1e40a4/mainraw · history · blame

#!/usr/bin/make -f

#export DH_GOPKG := github.com/gobuffalo/packr
export GOCACHE=$(CURDIR)/vendor
export GOPATH=$(CURDIR)/vendor

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

override_dh_auto_build:
	go get -d
	go install ./...

override_dh_auto_install:
	find .
	dh_auto_install -- --no-source

override_dh_auto_test:

override_dh_golang: