#!/usr/bin/make -f

export DH_GOLANG_EXCLUDES := example

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

# "complete_segment_test.go" depends on the package "github.com/chzyer/test"
# which is not yet present in the debian archive, so it has been removed.
override_dh_auto_configure:
	dh_auto_configure
	rm -v _build/src/github.com/bettercap/readline/complete_segment_test.go
