57b9c5cd06
This should fix a couple of issues (including a problem caused by a bug curl 7.43). Note that differential revision points to an earlier patch (but it's related, so I think that's fine). PR: 201121 Differential Revision: https://reviews.freebsd.org/D2894 Approved by: mentors (implicit)
29 lines
667 B
Makefile
29 lines
667 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= arcanist
|
|
PORTVERSION= 20150626
|
|
CATEGORIES= devel
|
|
PKGNAMEPREFIX= php5-
|
|
|
|
MAINTAINER= grembo@FreeBSD.org
|
|
COMMENT= Command line interface for Phabricator
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
CONFLICTS= arc-*
|
|
|
|
PHP_DESTDIR= lib/php/arcanist
|
|
RUN_DEPENDS= php5-libphutil>0:${PORTSDIR}/devel/libphutil
|
|
USE_PHP= curl json simplexml
|
|
USE_GITHUB= yes
|
|
NO_BUILD= yes
|
|
GH_ACCOUNT= phacility
|
|
GH_TAGNAME= 29839e8
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/${PHP_DESTDIR}
|
|
cd ${WRKSRC} ; ${PAX} -rw * ${STAGEDIR}${PREFIX}/${PHP_DESTDIR}
|
|
${LN} -sf ${PREFIX}/${PHP_DESTDIR}/scripts/arcanist.php ${STAGEDIR}${PREFIX}/bin/arc
|
|
|
|
.include <bsd.port.mk>
|