32 lines
1.2 KiB
Bash
32 lines
1.2 KiB
Bash
# Template file for 'podman'
|
|
pkgname=podman
|
|
version=2.1.0
|
|
revision=1
|
|
build_style=go
|
|
go_import_path="github.com/containers/podman/v2"
|
|
go_package="${go_import_path}/cmd/podman"
|
|
go_build_tags="seccomp apparmor containers_image_ostree_stub
|
|
btrfs_noversion exclude_graphdriver_btrfs"
|
|
hostmakedepends="pkg-config go-md2man"
|
|
makedepends="gpgme-devel libseccomp-devel device-mapper-devel"
|
|
depends="runc conmon cni-plugins slirp4netns containers.image"
|
|
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=b3098ef71b8f93829ad144352d7223ce4f60f7571e779be5b97fc70538250781
|
|
|
|
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
|
|
}
|