New package: podman-1.0.0
This commit is contained in:
parent
80a9ef2e46
commit
b6c75e423e
|
@ -0,0 +1,31 @@
|
|||
# Template file for 'podman'
|
||||
pkgname=podman
|
||||
version=1.0.0
|
||||
revision=1
|
||||
wrksrc="libpod-${version}"
|
||||
build_style=go
|
||||
go_import_path="github.com/containers/libpod"
|
||||
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 cri-o cni-plugins skopeo buildah"
|
||||
short_desc="Simple management tool for containers and images"
|
||||
maintainer="Cameron Nemo <camerontnorman@gmail.com>"
|
||||
license="Apache-2.0"
|
||||
homepage="https://podman.io/"
|
||||
distfiles="https://github.com/containers/libpod/archive/v${version}.tar.gz"
|
||||
checksum=f7a462563dd587208eff3c3c0689bc4d01071a8f7933bec2a13126be123f63a8
|
||||
|
||||
if [ "$CROSS_BUILD" ]; then
|
||||
go_build_tags+=" containers_image_openpgp exclude_graphdriver_overlay"
|
||||
fi
|
||||
|
||||
post_install() {
|
||||
make install.man PREFIX="${DESTDIR}/usr" DESTDIR="${DESTDIR}"
|
||||
make install.cni DESTDIR="${DESTDIR}"
|
||||
vinstall completions/bash/podman 644 usr/share/bash-completion/completions
|
||||
sed 's|cgroup_manager = "systemd"|cgroup_manager = "cgroupfs"|g' libpod.conf >libpod.cgfs.conf
|
||||
vinstall libpod.cgfs.conf 644 usr/share/containers libpod.conf
|
||||
}
|
Loading…
Reference in New Issue