42 lines
1.5 KiB
Bash
42 lines
1.5 KiB
Bash
# Template file for 'podman'
|
|
pkgname=podman
|
|
version=4.9.3
|
|
revision=1
|
|
build_style=go
|
|
go_import_path="github.com/containers/podman/v4"
|
|
go_package="${go_import_path}/cmd/podman ${go_import_path}/cmd/rootlessport"
|
|
go_build_tags="seccomp apparmor containers_image_ostree_stub"
|
|
hostmakedepends="pkg-config go-md2man python3"
|
|
makedepends="gpgme-devel libseccomp-devel device-mapper-devel libbtrfs-devel"
|
|
depends="runc conmon cni-plugins slirp4netns fuse-overlayfs
|
|
containers-common containers.image containers.storage"
|
|
short_desc="Simple management tool for containers and images"
|
|
maintainer="Cameron Nemo <cam@nohom.org>"
|
|
license="Apache-2.0"
|
|
homepage="https://podman.io/"
|
|
changelog="https://raw.githubusercontent.com/containers/podman/main/RELEASE_NOTES.md"
|
|
distfiles="https://github.com/containers/podman/archive/v${version}.tar.gz"
|
|
checksum=37afc5bba2738c68dc24400893b99226c658cc9a2b22309f4d7abe7225d8c437
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
go_build_tags+=" containers_image_openpgp"
|
|
fi
|
|
|
|
post_build() {
|
|
make docs
|
|
}
|
|
|
|
post_install() {
|
|
vmkdir usr/libexec/podman
|
|
mv "${DESTDIR}/usr/bin/rootlessport" "${DESTDIR}/usr/libexec/podman/rootlessport"
|
|
make install.man DESTDIR="${DESTDIR}" PREFIX="/usr"
|
|
make install.completions DESTDIR="${DESTDIR}" PREFIX="/usr"
|
|
cp vendor/github.com/containers/common/pkg/config/containers.conf \
|
|
containers.cgfs.conf
|
|
vsed -i -e 's|#cgroup_manager = "systemd"|cgroup_manager = "cgroupfs"|g' \
|
|
containers.cgfs.conf
|
|
vinstall containers.cgfs.conf 644 usr/share/containers containers.conf
|
|
vsv podman
|
|
vsv podman-docker
|
|
}
|