mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
34 lines
897 B
Makefile
34 lines
897 B
Makefile
# Created by: Bernard Spil <brnrd@freebsd.org>
|
|
|
|
PORTNAME= notes
|
|
PORTVERSION= 4.1.1
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= www editors
|
|
MASTER_SITES= https://github.com/nextcloud/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/
|
|
PKGNAMEPREFIX= nextcloud-
|
|
PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX}
|
|
DISTNAME= ${PORTNAME}
|
|
DIST_SUBDIR= nextxloud/${PORTNAME}-${DISTVERSION}
|
|
|
|
MAINTAINER= brnrd@FreeBSD.org
|
|
COMMENT= Notes app for Nextcloud
|
|
|
|
LICENSE= AGPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
RUN_DEPENDS= nextcloud${PHP_PKGNAMESUFFIX}>=20: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})
|
|
@(cd ${WRKSRC}; ${FIND} . -not -type d) | ${SORT} | \
|
|
${SED} -e 's,^\.,${WWWDIR_REL},' >> ${TMPPLIST}
|
|
|
|
.include <bsd.port.mk>
|