#!/usr/bin/make -f

#export DH_VERBOSE = 1

export GOCACHE=$(CURDIR)/debian/vendor
export GOPATH=$(CURDIR)/debian/vendor

%:
	dh $@ --buildsystem=golang

override_dh_auto_build:
	go build -ldflags "-s -w" -o arsenal-ng ./cmd/arsenal-ng

override_dh_auto_install:
	dh_auto_install -- --no-source

override_dh_auto_test:
	# tests fail because the depends are missing.
