mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
3b1deb28f0
JSXC is a browser-based XMPP Client which suports video calls, file transfer and encrypted communication Features: * Federated real-time communication with XMPP * One-to-one conversation * Multi-user conversation * File transfer * Video calls * Internationalisation * Desktop notifications * End-to-end encrypted two-party communication * Responsive layout * Emoticons two_hearts * Multi-Tab * Screen sharing PR: 268107 Reported by: manuel@mmap.at Tested by: bofh Approved by: mdw (Submitter is maintainer)
27 lines
595 B
Makefile
27 lines
595 B
Makefile
PORTNAME= jsxc
|
|
DISTVERSION= 4.4.0
|
|
CATEGORIES= net-im www
|
|
MASTER_SITES= https://github.com/jsxc/jsxc/releases/download/v${DISTVERSION}/
|
|
|
|
MAINTAINER= mdw@FreeBSD.org
|
|
COMMENT= Browser-based XMPP Client
|
|
WWW= https://www.jsxc.org/
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
@(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
|
|
|
|
post-install:
|
|
${FIND} -s ${STAGEDIR}${WWWDIR} -not -type d | ${SORT} | \
|
|
${SED} -e 's#^${STAGEDIR}${PREFIX}/##' >> ${TMPPLIST}
|
|
|
|
.include <bsd.port.mk>
|