jeremy 19d897862e Import node-fibers-0.6.4.
This extension provides a fiber/coroutine implementation for nodejs.  It
also ships with a futures implementation that wraps existing nodejs
async functions, allowing synchronous style code that handles exceptions
properly and doesn't block the nodejs event loop.

OK sthen@
2012-04-03 18:46:03 +00:00

35 lines
798 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2012/04/03 18:46:03 jeremy Exp $
# Currently node itself is only for amd64 and i386, but
# the coroutine library this uses only works on amd64
# and i386, so even if other arches are supported by node
# later, this extension will only support these arches.
ONLY_FOR_ARCHS= amd64 i386
COMMENT = fiber/coroutine support for nodejs
VERSION = 0.6.4
NPM_NAME = fibers
CATEGORIES = devel
MAINTAINER = Jeremy Evans <jeremy@openbsd.org>
HOMEPAGE = https://github.com/laverdet/node-fibers
# MIT
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM = Yes
PERMIT_DISTFILES_FTP = Yes
MODULES = www/node
CONFIGURE_STYLE = npm ext
USE_GMAKE = Yes
SUBST_VARS = CFLAGS
pre-configure:
${SUBST_CMD} ${WRKDIST}/src/platform.mk
.include <bsd.port.mk>