File: rules

package info (click to toggle)
golang-github-tinylib-msgp 1.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 472 kB
  • sloc: makefile: 42; sh: 10
file content (19 lines) | stat: -rwxr-xr-x 585 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/make -f

export GOPATH := $(CURDIR)/obj-$(DEB_BUILD_GNU_TYPE)

override_dh_auto_build:
	# build the "msgp" binary
	dh_auto_build
	# DH_GOLANG_INSTALL_EXTRA doesn't preserve file executable mode, so
	# manually copy it here.
	cp _generated/search.sh $(GOPATH)/src/github.com/tinylib/msgp/_generated/
	# use new binary to refresh generated code
	DH_GOLANG_GO_GENERATE=1 PATH="$(GOPATH)/bin:$$PATH" \
		dh_auto_build -- github.com/tinylib/msgp/_generated

override_dh_auto_test:
	dh_auto_test -- github.com/tinylib/msgp/_generated

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