1467f17803
Changes since 0.5: mktemp does not use a file pattern anymore. That file pattern had the effect that all temporary files had the same name: /tmp/pkg_regress.
26 lines
602 B
Makefile
26 lines
602 B
Makefile
# $NetBSD: Makefile,v 1.18 2020/02/15 14:40:45 rillig Exp $
|
|
|
|
PKGNAME= pkg_regress-0.6
|
|
CATEGORIES= pkgtools
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= Run pkgsrc infrastructure regression test suite
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
USE_LANGUAGES= # none
|
|
NO_BUILD= yes
|
|
AUTO_MKDIRS= yes
|
|
|
|
SUBST_CLASSES+= regress
|
|
SUBST_STAGE.regress= pre-configure
|
|
SUBST_FILES.regress= pkg_regress.sh
|
|
SUBST_VARS.regress= MAKE PKGSRCDIR SH EGREP
|
|
|
|
do-extract:
|
|
${CP} ${FILESDIR}/pkg_regress.sh ${WRKSRC}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/pkg_regress.sh \
|
|
${DESTDIR}${PREFIX}/sbin/pkg_regress
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|