#!/usr/bin/make -f

export DH_GOLANG_INSTALL_EXTRA := x509roots/fallback/bundle.der

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

execute_after_dh_auto_configure:
	cp -av $(CURDIR)/debian/go/src _build/src/golang.org/x/crypto/vendor

override_dh_auto_install:
	dh_auto_install -- --no-binaries
