mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-25 09:34:11 +00:00
03d195f6f7
npm ERR! network getaddrinfo EAI_FAIL Reported by: pkg-fallout Approved by: portmgr blanket
30 lines
615 B
Makefile
30 lines
615 B
Makefile
# Created by: Carlos J Puga Medina <cpm@fbsd.es>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ladon
|
|
PORTVERSION= 1.0.6
|
|
CATEGORIES= deskutils
|
|
|
|
MAINTAINER= cpm@fbsd.es
|
|
COMMENT= Utility to process many files in parallel
|
|
|
|
LICENSE= MIT
|
|
|
|
BROKEN= does not build
|
|
|
|
BUILD_DEPENDS= npm>0:${PORTSDIR}/www/npm
|
|
RUN_DEPENDS= npm>0:${PORTSDIR}/www/npm
|
|
|
|
NO_BUILD= yes
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= danielgtaylor
|
|
|
|
do-install:
|
|
(cd ${STAGEDIR}${PREFIX}/lib && ${SETENV} \
|
|
HOME=${WRKDIR} npm install --ignore-scripts ${WRKSRC})
|
|
|
|
# this is a dirty hack
|
|
${LN} -s ${PREFIX}/lib/node_modules/.bin/ladon ${STAGEDIR}${PREFIX}/bin/ladon
|
|
|
|
.include <bsd.port.mk>
|