b686dd9180
pkglint --only "https instead of http" -r -F With manual adjustments afterwards since pkglint 19.4.4 fixed a few indentations in unrelated lines. This mainly affects projects hosted at SourceForce, as well as freedesktop.org, CTAN and GNU.
31 lines
815 B
Makefile
31 lines
815 B
Makefile
# $NetBSD: Makefile,v 1.15 2020/01/18 23:33:26 rillig Exp $
|
|
|
|
PKGNAME= mksandbox-1.8
|
|
CATEGORIES= pkgtools
|
|
|
|
MAINTAINER= agc@NetBSD.org
|
|
HOMEPAGE= https://www.NetBSD.org/docs/pkgsrc/bulk.html#setting-up-a-sandbox
|
|
COMMENT= Tool for creating sandboxes
|
|
LICENSE= 2-clause-bsd
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
NO_BUILD= yes
|
|
NO_CHECKSUM= yes
|
|
USE_LANGUAGES= # none
|
|
INSTALLATION_DIRS= sbin ${PKGMANDIR}/man8
|
|
|
|
do-extract:
|
|
cd ${FILESDIR} && cp mksandbox mksandbox.8 ${WRKSRC}/
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
SUBST_CLASSES+= up
|
|
SUBST_STAGE.up= do-configure
|
|
SUBST_FILES.up= mksandbox mksandbox.8
|
|
SUBST_SED.up+= -e 's,/usr/pkgsrc,${PKGSRCDIR},g'
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/mksandbox ${DESTDIR}${PREFIX}/sbin/
|
|
${INSTALL_MAN} ${WRKSRC}/mksandbox.8 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|