Codebase list golang-github-gobuffalo-packr / eb1a15bc-c8ad-4537-8dd2-5458603274ec/main debian / rules
eb1a15bc-c8ad-4537-8dd2-5458603274ec/main

Tree @eb1a15bc-c8ad-4537-8dd2-5458603274ec/main (Download .tar.gz)

rules @eb1a15bc-c8ad-4537-8dd2-5458603274ec/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: