Codebase list golang-github-gobuffalo-packr / ab639a91-f393-4d40-8263-05ec7762a18f/main debian / rules
ab639a91-f393-4d40-8263-05ec7762a18f/main

Tree @ab639a91-f393-4d40-8263-05ec7762a18f/main (Download .tar.gz)

rules @ab639a91-f393-4d40-8263-05ec7762a18f/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: