mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
34 lines
905 B
Makefile
34 lines
905 B
Makefile
# Created by: Bernard Spil <brnrd@freebsd.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= twofactor_u2f
|
|
PORTVERSION= 5.1.0
|
|
CATEGORIES= security
|
|
MASTER_SITES= https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/
|
|
PKGNAMEPREFIX= nextcloud-
|
|
PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX}
|
|
DISTNAME= ${PORTNAME}
|
|
DISTVERSIONPREFIX= v
|
|
DIST_SUBDIR= ${PKGNAMEPREFIX:S/-//}/${DISTNAME}-${DISTVERSIONPREFIX}${PORTVERSION}
|
|
|
|
MAINTAINER= brnrd@FreeBSD.org
|
|
COMMENT= U2F multi-factor auth app for Nextcloud
|
|
|
|
LICENSE= AGPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
RUN_DEPENDS= nextcloud${PHP_PKGNAMESUFFIX}>=17:www/nextcloud@${PHP_FLAVOR}
|
|
|
|
USES= php:flavors
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
WWWDIR= ${PREFIX}/www/nextcloud/apps-pkg/${PORTNAME}
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
|
|
${RM} ${STAGEDIR}${WWWDIR}/COPYING
|
|
|
|
.include <bsd.port.mk>
|