Files
Tiago Gasiba 1f68650234 sysutils/boxrun: Update to 0.4.3
ChangeLog:
  - support for VNET/epair networking
  - support for devfs, and mountpoints
  - several security improvements
  - bugfixes

MFH:		2026Q2
2026-06-16 22:08:09 +02:00

34 lines
812 B
Makefile

PORTNAME= boxrun
DISTVERSIONPREFIX= v
DISTVERSION= 0.4.3
CATEGORIES= sysutils
MAINTAINER= tiga@FreeBSD.org
COMMENT= Sandboxed command execution using FreeBSD jails
WWW= https://gitlab.com/tgasiba/boxrun
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_GITLAB= yes
GL_ACCOUNT= tgasiba
GL_PROJECT= boxrun
PLIST_FILES= sbin/boxrun \
share/boxrun/pf.conf.sample \
share/man/man1/boxrun.1.gz
do-build:
${CC} ${CFLAGS} -o ${WRKSRC}/boxrun ${WRKSRC}/boxrun.c -ljail
do-install:
${INSTALL_PROGRAM} -m 4755 ${WRKSRC}/boxrun \
${STAGEDIR}${PREFIX}/sbin/boxrun
${INSTALL_MAN} ${WRKSRC}/boxrun.1 \
${STAGEDIR}${PREFIX}/share/man/man1/boxrun.1
${MKDIR} ${STAGEDIR}${PREFIX}/share/boxrun
${INSTALL_DATA} ${WRKSRC}/pf.conf.sample \
${STAGEDIR}${PREFIX}/share/boxrun/pf.conf.sample
.include <bsd.port.mk>