Asynchronous, non-blocking SQLite3 bindings for Node.JS. from aaron bieber (MAINTAINER) with feedback from me and sthen@ ok sthen@
31 lines
562 B
Makefile
31 lines
562 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/05/10 10:46:17 jasper Exp $
|
|
|
|
COMMENT = sqlite3 bindings for nodejs
|
|
|
|
NPM_VERSION = 2.1.3
|
|
NPM_NAME = sqlite3
|
|
CATEGORIES = databases
|
|
|
|
MAINTAINER = Aaron Bieber <deftly@gmail.com>
|
|
|
|
HOMEPAGE = https://github.com/developmentseed/node-sqlite3
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MODULES = www/node
|
|
|
|
CONFIGURE_STYLE = npm ext
|
|
|
|
WANTLIB = sqlite3
|
|
|
|
BUILD_DEPENDS = ${RUN_DEPENDS}
|
|
|
|
# needs expresso and further love
|
|
NO_REGRESS = Yes
|
|
|
|
.include <bsd.port.mk>
|