29 lines
899 B
Bash
29 lines
899 B
Bash
# Template file for 'buildah'
|
|
pkgname=buildah
|
|
version=1.16.2
|
|
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"
|
|
distfiles="${homepage}/archive/v${version}.tar.gz"
|
|
checksum=355b7b6c6486be0375d6ac74c43a61f1bed1faa6c90b1f70c389da4a7fc9a03e
|
|
|
|
post_build() {
|
|
make -C docs GOMD2MAN=go-md2man
|
|
}
|
|
|
|
post_install() {
|
|
vinstall contrib/completions/bash/buildah 644 /usr/share/bash-completion/completions
|
|
for _i in docs/*.1; do
|
|
vman $_i
|
|
done
|
|
}
|