mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
ab26d9d01f
Buildah and Podman should be capitalized, following upstream policy.
28 lines
639 B
Makefile
28 lines
639 B
Makefile
PORTNAME= ocijail
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.3.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= dfr@FreeBSD.org
|
|
COMMENT= Experimental, proof-of-concept OCI-compatible runtime for jails
|
|
WWW= https://github.com/dfr/ocijail
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
BUILD_DEPENDS= bazel:devel/bazel5 bash:shells/bash
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= dfr
|
|
|
|
PLIST_FILES= bin/ocijail
|
|
|
|
# Build happens in the //:install rule
|
|
NO_BUILD= yes
|
|
BAZEL_OPTS= --batch --output_user_root=${WRKDIR}/bazel_out
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && bazel ${BAZEL_OPTS} run --experimental_repository_disable_download //:install -- ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|