#!/usr/bin/make -f

export DH_GOPKG := github.com/Azure/azure-storage-azcopy
export DH_GOLANG_BUILDPKG := $(DH_GOPKG)

%:
	dh $@ --builddirectory=_build --buildsystem=golang --with=golang

override_dh_auto_install:
	cd _build && mv bin/azure-storage-azcopy bin/azcopy
	dh_auto_install -- --no-source
	

override_dh_auto_test:
