blob: af75a35995531cdf4edac6fb90b31333f710e6e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
PORTNAME= novnc
PORTVERSION= 1.2.0
PORTREVISION= 1
CATEGORIES= www
MAINTAINER= dpetrov67@gmail.com
COMMENT= HTML5 VNC client
LICENSE= MPL20
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USE_GITHUB= yes
GH_ACCOUNT= novnc
GH_PROJECT= noVNC
GH_TAGNAME= 9142f8f
NO_ARCH= yes
NO_BUILD= yes
TARGET_DIR= ${PREFIX}/libexec/novnc
post-extract:
@cd ${WRKSRC} && ${RM} .gitignore .gitmodules .travis.yml .eslintignore
@cd ${WRKSRC} && ${RM} -R .github
@${FIND} ${WRKSRC} -name '.eslintrc' -delete
do-install:
${MKDIR} ${STAGEDIR}${TARGET_DIR}
cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${TARGET_DIR}
.include <bsd.port.mk>
|