#!/usr/bin/make -f

# output every command that modifies files on the build system.
#export DH_VERBOSE = 1
#export DH_GOPKG := github.com/bettercap/bettercap
export GOCACHE=$(CURDIR)/vendor
export GOPATH=$(CURDIR)/vendor

%:
	dh $@ --buildsystem=golang

override_dh_auto_build:
	make build

override_dh_auto_install:
	dh_auto_install -- --no-source

override_dh_auto_test:
#	go test ./...
#	do not run tests. They use network and they fail on arm*

override_dh_dwz:
