Codebase list golang-github-gobuffalo-packr / 79523875-9232-4a1d-bb2d-6b8bdd23ae24/main debian / rules
79523875-9232-4a1d-bb2d-6b8bdd23ae24/main

Tree @79523875-9232-4a1d-bb2d-6b8bdd23ae24/main (Download .tar.gz)

rules @79523875-9232-4a1d-bb2d-6b8bdd23ae24/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: