void-packages/srcpkgs/buildah/template

36 lines
1 KiB
Bash
Raw Normal View History

2018-11-25 19:49:00 +00:00
# Template file for 'buildah'
pkgname=buildah
2019-03-30 18:11:54 +00:00
version=1.7.2
2019-01-18 03:10:25 +00:00
revision=1
2018-11-25 19:49:00 +00:00
build_style=go
2019-01-19 01:12:29 +00:00
go_import_path=github.com/containers/buildah
2018-11-25 19:49:00 +00:00
go_package="${go_import_path}/cmd/buildah"
2019-01-19 01:12:29 +00:00
go_build_tags=containers_image_ostree_stub
2018-11-25 19:49:00 +00:00
hostmakedepends="pkg-config go-md2man"
makedepends="libostree-devel libbtrfs-devel device-mapper-devel gpgme-devel
libassuan-devel libseccomp-devel"
depends="runc skopeo"
2019-01-18 03:10:25 +00:00
short_desc="OCI image building tool"
2018-11-25 19:49:00 +00:00
maintainer="Cameron Nemo <camerontnorman@gmail.com>"
license="Apache-2.0"
homepage="https://github.com/containers/buildah"
distfiles="${homepage}/archive/v${version}.tar.gz"
2019-03-30 18:11:54 +00:00
checksum=886bfacc59f59f6d00d1bf5799ebcdfcab02003b531a3a9c82529590eb0eb8c2
2018-11-25 19:49:00 +00:00
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
}