Codebase list golang-github-gobuffalo-packr / 1fe0d4ee-0811-44e9-a721-554b0ca5829a/main debian / rules
1fe0d4ee-0811-44e9-a721-554b0ca5829a/main

Tree @1fe0d4ee-0811-44e9-a721-554b0ca5829a/main (Download .tar.gz)

rules @1fe0d4ee-0811-44e9-a721-554b0ca5829a/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: