29 lines
824 B
Bash
29 lines
824 B
Bash
# Template file for 'containers.image'
|
|
pkgname=containers.image
|
|
version=5.28.0
|
|
revision=1
|
|
conf_files="/etc/containers/registries.conf /etc/containers/policy.json"
|
|
hostmakedepends="go-md2man"
|
|
short_desc="Configuration shared by podman, buildah, and skopeo"
|
|
maintainer="Cameron Nemo <cam@nohom.org>"
|
|
license="Apache-2.0"
|
|
homepage="https://github.com/containers/image"
|
|
distfiles="https://github.com/containers/image/archive/v${version}.tar.gz"
|
|
checksum=89f0aa574f65b1849c57ed2be660fac2cbaec5f43e2e14cdfebb3ff15556fd78
|
|
|
|
do_build() {
|
|
mkdir -p build
|
|
for doc in docs/*.*.md; do
|
|
docbase="${doc##*/}"
|
|
go-md2man -in "${doc}" -out "build/${docbase/.md/}"
|
|
done
|
|
}
|
|
|
|
do_install() {
|
|
for man in build/*; do
|
|
vman "${man}"
|
|
done
|
|
vinstall registries.conf 0644 etc/containers
|
|
vinstall "${FILESDIR}/policy.json" 0644 etc/containers
|
|
}
|