void-packages/srcpkgs/buildah/template
2022-04-03 17:49:41 +02:00

31 lines
975 B
Bash

# Template file for 'buildah'
pkgname=buildah
version=1.24.3
revision=1
build_style=go
go_import_path=github.com/containers/buildah
go_package="${go_import_path}/cmd/buildah"
go_build_tags=containers_image_ostree_stub
hostmakedepends="pkg-config go-md2man"
makedepends="libostree-devel libbtrfs-devel device-mapper-devel gpgme-devel
libassuan-devel libseccomp-devel"
depends="runc containers.image"
short_desc="Dockerfile compatible OCI image building tool"
maintainer="Cameron Nemo <cnemo@tutanota.com>"
license="Apache-2.0"
homepage="https://github.com/containers/buildah"
changelog="https://github.com/containers/buildah/blob/master/CHANGELOG.md"
distfiles="https://github.com/containers/buildah/archive/refs/tags/v${version}.tar.gz"
checksum=664e2aec0e07df9668c6d41de540e84dc2447950cf952851ca9717a10cc46124
post_build() {
make -C docs GOMD2MAN=go-md2man
}
post_install() {
vcompletion contrib/completions/bash/buildah bash
for _i in docs/*.1; do
vman $_i
done
}