File: rules

package info (click to toggle)
gron 0.7.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,740 kB
  • sloc: sh: 74; makefile: 17
file content (26 lines) | stat: -rwxr-xr-x 791 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/make -f

include /usr/share/dpkg/pkg-info.mk

export DH_GOPKG := github.com/tomnomnom/gron
export GO_LDFLAGS += -X main.gronVersion=${DEB_VERSION_UPSTREAM}

export DH_VERBOSE = 1

override_dh_auto_build:
	dh_auto_build -- -ldflags '$(GO_LDFLAGS)'
	sed -e "s/__VERSION__/$(DEB_VERSION_UPSTREAM)/g" < debian/gron.1.md.in > debian/gron.1.md
	pandoc debian/gron.1.md -s -f markdown -t man -o debian/gron.1

override_dh_auto_install:
	dh_auto_install -- --no-source
	# Install completions
	install -D -m644 $(CURDIR)/completions/gron.fish \
			$(CURDIR)/debian/gron/usr/share/fish/vendor_completions.d/gron.fish

override_dh_installchangelogs:
	pandoc -f markdown_github -t plain -o CHANGELOG CHANGELOG.mkd
	dh_installchangelogs CHANGELOG

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