Codebase list golang-github-gobuffalo-packr / fcd45d96-6228-4c7d-a4a4-ab16306a4d36/main debian / rules
fcd45d96-6228-4c7d-a4a4-ab16306a4d36/main

Tree @fcd45d96-6228-4c7d-a4a4-ab16306a4d36/main (Download .tar.gz)

rules @fcd45d96-6228-4c7d-a4a4-ab16306a4d36/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: