Codebase list golang-github-gobuffalo-packr / ef7ba46c-fd84-4cc8-ba1f-35b85aa1b907/main debian / rules
ef7ba46c-fd84-4cc8-ba1f-35b85aa1b907/main

Tree @ef7ba46c-fd84-4cc8-ba1f-35b85aa1b907/main (Download .tar.gz)

rules @ef7ba46c-fd84-4cc8-ba1f-35b85aa1b907/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: