Codebase list golang-github-gobuffalo-packr / f065c37f-b374-466e-85a9-6fc5f1f4a362/main debian / rules
f065c37f-b374-466e-85a9-6fc5f1f4a362/main

Tree @f065c37f-b374-466e-85a9-6fc5f1f4a362/main (Download .tar.gz)

rules @f065c37f-b374-466e-85a9-6fc5f1f4a362/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: