mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
f52702d061
Quickjail is a utility to create transient single-command jails. This utility operates much like jail(8) -c, but the jails it creates are not persistent, unlike with jail(8). This makes quickjail more convenient for cases where the command may need termination, which may prevent jail(8) from cleaning up the jail. WWW: https://git.kevans.dev/kevans/quickjail Reviewed by: koobs (earlier version) Differential Revision: https://reviews.freebsd.org/D24792
24 lines
603 B
Makefile
24 lines
603 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= quickjail
|
|
PORTVERSION= 0.1.2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://git.kevans.dev/kevans/${PORTNAME}/archive/${PORTVERSION}.tar.gz?dummy=/
|
|
|
|
MAINTAINER= kevans@FreeBSD.org
|
|
COMMENT= Utility to quickly create transient single-command jails
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
PLIST_FILES= bin/${PORTNAME} share/man/man1/${PORTNAME}.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1.gz \
|
|
${STAGEDIR}${MAN1PREFIX}/share/man/man1
|
|
|
|
.include <bsd.port.mk>
|