#!/usr/bin/make -f
include /usr/share/dpkg/pkg-info.mk

export CGO_ENABLED = 0

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

override_dh_auto_test:
	# No tests in upstream source

override_dh_auto_install:
	dh_auto_install -- --no-source

override_dh_dwz:
	# Go binaries use compressed debug sections incompatible with dwz

override_dh_strip:
	# Do not strip Go binaries
