Codebase list golang-github-gobuffalo-packr / 6a6e5ce7-7acc-4186-beff-822062e0df81/main debian / rules
6a6e5ce7-7acc-4186-beff-822062e0df81/main

Tree @6a6e5ce7-7acc-4186-beff-822062e0df81/main (Download .tar.gz)

rules @6a6e5ce7-7acc-4186-beff-822062e0df81/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: