Non-blocking PostgreSQL client for node.js. Pure JavaScript and native libpq bindings. Active development, well tested, and production use. OK sthen@
31 lines
596 B
Makefile
31 lines
596 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/04/03 18:49:11 jeremy Exp $
|
|
|
|
COMMENT = postgresql client for nodejs
|
|
|
|
VERSION = 0.6.10
|
|
NPM_NAME = pg
|
|
CATEGORIES = databases
|
|
|
|
MAINTAINER = Jeremy Evans <jeremy@openbsd.org>
|
|
|
|
HOMEPAGE = https://github.com/brianc/node-postgres
|
|
|
|
# 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 = pq
|
|
|
|
BUILD_DEPENDS = ${RUN_DEPENDS}
|
|
LIB_DEPENDS = databases/postgresql
|
|
RUN_DEPENDS = devel/node-generic-pool
|
|
MODNODE_DEPENDS = generic-pool
|
|
|
|
.include <bsd.port.mk>
|