File: rules

package info (click to toggle)
cosign 3.0.5-1~exp0
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 5,276 kB
  • sloc: sh: 237; makefile: 168
file content (24 lines) | stat: -rwxr-xr-x 686 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
#!/usr/bin/make -f

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

export DH_GOLANG_BUILDPKG="github.com/sigstore/cosign/cmd/cosign"

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

execute_after_dh_auto_install:
	rm -fv $(CURDIR)/debian/tmp/usr/share/gocode/src/github.com/sigstore/cosign/test/testdata/test.wasm

B = $(CURDIR)/debian/tmp/usr/bin
M = $(CURDIR)/debian/tmp/usr/share/man/man1

ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES)))
execute_before_dh_installman-arch:
	mkdir -pv $(M)
	help2man --version-string="$(DEB_VERSION)" \
		--no-info --no-discard-stderr \
		--name="Container Signing/Verification/Storage tool" \
		--output $(M)/cosign.1 \
		$(B)/cosign
endif