void-packages/srcpkgs/buildah/template
2019-02-22 02:20:40 +01:00

35 lines
1 KiB
Bash

# Template file for 'buildah'
pkgname=buildah
version=1.7
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 skopeo"
short_desc="OCI image building tool"
maintainer="Cameron Nemo <camerontnorman@gmail.com>"
license="Apache-2.0"
homepage="https://github.com/containers/buildah"
distfiles="${homepage}/archive/v${version}.tar.gz"
checksum=59e21fa7544c3f8408fcfd9632853127c1c47059b8c692317564e780c062622f
case "$XBPS_TARGET_ARCH" in
*-musl) broken="/lib/libmount.so.1: undefined reference to getrandom" ;;
esac
post_build() {
make -C docs
}
post_install() {
vinstall contrib/completions/bash/buildah 644 /usr/share/bash-completion/completions
vinstall tests/registries.conf 644 /etc/containers
for _i in docs/*.1; do
vman $_i
done
vlicense LICENSE
}