16 lines
479 B
Makefile
Executable file
16 lines
479 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
DEB_BUILD_OPTIONS = nostrip
|
|
DPKG_EXPORT_BUILDFLAGS = 1
|
|
include /usr/share/dpkg/buildflags.mk
|
|
include /usr/share/dpkg/pkg-info.mk
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_build:
|
|
GOCACHE=$(CURDIR)/tmp/.cache \
|
|
GOPATH=$(CURDIR)/tmp/gocode \
|
|
go get -u -v github.com/shulhan/go-bindata/cmd/go-bindata ; \
|
|
PATH=$(CURDIR)/tmp/gocode/bin:$(PATH) $(MAKE) GOCACHE=$(CURDIR)/tmp/.cache GOPATH=$(CURDIR)/tmp/gocode VERSION=$(DEB_VERSION)
|