void-packages/srcpkgs/skopeo/template
Cameron Nemo db1a46c462 skopeo: update to 0.2.0.
Also build/install all of the manpages.
2020-04-11 08:20:14 +02:00

29 lines
920 B
Bash

# Template file for 'skopeo'
pkgname=skopeo
version=0.2.0
revision=1
build_style=go
go_import_path="github.com/containers/${pkgname}"
go_package="${go_import_path}/cmd/${pkgname}"
go_build_tags="containers_image_ostree_stub"
hostmakedepends="go-md2man pkg-config"
makedepends="device-mapper-devel gpgme-devel libbtrfs-devel"
depends="containers.image"
short_desc="Utility for operations on container images and image repositories"
maintainer="Frank Steinborn <steinex@nognu.de>"
license="Apache-2.0"
homepage="https://github.com/containers/skopeo"
distfiles="https://github.com/containers/${pkgname}/archive/v${version}.tar.gz"
checksum=b58c54732932cdd89f760f30136317fc2fef6457d158fb1e5d4976aeabcb20f2
make_dirs="/var/lib/atomic/sigstore 0755 root root"
post_build() {
make docs
}
post_install() {
vinstall completions/bash/skopeo 644 usr/share/bash-completion/completions
for m in docs/*.1; do
vman "$m"
done
}