void-packages/srcpkgs/podman/template
2021-04-07 21:16:59 -04:00

31 lines
1.2 KiB
Bash

# Template file for 'podman'
pkgname=podman
version=3.1.0
revision=1
build_style=go
go_import_path="github.com/containers/podman/v3"
go_package="${go_import_path}/cmd/podman"
go_build_tags="seccomp apparmor containers_image_ostree_stub"
hostmakedepends="pkg-config go-md2man"
makedepends="gpgme-devel libseccomp-devel device-mapper-devel libbtrfs-devel"
depends="runc conmon cni-plugins slirp4netns containers.image fuse-overlayfs"
short_desc="Simple management tool for containers and images"
maintainer="Cameron Nemo <cnemo@tutanota.com>"
license="Apache-2.0"
homepage="https://podman.io/"
distfiles="https://github.com/containers/libpod/archive/v${version}.tar.gz"
checksum=60031aa620cbfab641ffef9cb4e68240a0383c23ffd0276938684e98794bb5db
if [ "$CROSS_BUILD" ]; then
go_build_tags+=" containers_image_openpgp"
fi
post_install() {
make install.man DESTDIR="${DESTDIR}" PREFIX="/usr"
make install.cni DESTDIR="${DESTDIR}"
make install.completions DESTDIR="${DESTDIR}" PREFIX="/usr"
sed -e 's|# cgroup_manager = "systemd"|cgroup_manager = "cgroupfs"|g' \
vendor/github.com/containers/common/pkg/config/containers.conf \
>containers.cgfs.conf
vinstall containers.cgfs.conf 644 usr/share/containers containers.conf
}