forked from Lainports/freebsd-ports
0.2.0 mainly featured quickshell(1), which is a shortcut for invocations like: $ quickjail path=/mnt command=/bin/sh # Equivalent: $ quickshell /mnt This update also simplifies the port by just using the bsd.prog.mk install builds with USES=uidfix. PLIST_FILES was split out into a pkg-plist while it was growing in numbers and was otherwise tempting me to come up with some less greppable incantations to generate it.
24 lines
546 B
Makefile
24 lines
546 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= quickjail
|
|
PORTVERSION= 0.2.1
|
|
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
|
|
|
|
USES= uidfix
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
MAKE_ENV+= BINDIR="${PREFIX}/bin" \
|
|
MANDIR="${PREFIX}/share/man/man"
|
|
|
|
pre-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/bin ${STAGEDIR}${PREFIX}/share/man/man1
|
|
|
|
.include <bsd.port.mk>
|