chdb implements a read-only memory mapped hash-table for PHP.

WWW: https://github.com/lcastelli/chdb/

PR:		ports/164527
Submitted by:	Evan Sarmiento <esarmiento@wayfair.com>
This commit is contained in:
Martin Wilke 2012-01-28 17:48:59 +00:00
parent c3b5da5af5
commit 54e6036d57
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=289944
4 changed files with 42 additions and 0 deletions

View file

@ -509,6 +509,7 @@
SUBDIR += pear-Structures_DataGrid_DataSource_MDB2
SUBDIR += pear-Structures_DataGrid_DataSource_PDO
SUBDIR += pear-XML_Query2XML
SUBDIR += pecl-chdb
SUBDIR += pecl-dbase
SUBDIR += pecl-drizzle
SUBDIR += pecl-handlersocket

View file

@ -0,0 +1,36 @@
# New ports collection makefile for: pecl-chdb
# Date created: 26 January 2012
# Whom: Evan Sarmiento <esarmiento@wayfair.com>
#
# $FreeBSD$
#
PORTNAME= chdb
PORTVERSION= 1.0.1
CATEGORIES= databases
MASTER_SITES= https://github.com/lcastelli/chdb/tarball/${DISTVERSION}/
PKGNAMEPREFIX= pecl-
DISTNAME= lcastelli-${PORTNAME}-v${DISTVERSION}-0-g${DISTVERSION}
DIST_SUBDIR= PECL
MAINTAINER= esarmiento@wayfair.com
COMMENT= CHDB extension
BUILD_DEPENDS= ${LOCALBASE}/lib/libcmph.so:${PORTSDIR}/devel/cmph
RUN_DEPENDS= ${LOCALBASE}/lib/libcmph.so:${PORTSDIR}/devel/cmph
USE_PHP= yes
USE_PHP_BUILD= yes
USE_PHPIZE= yes
USE_PHPEXT= yes
PHP_MODNAME= chdb
CFLAGS+= -L${LOCALBASE}/lib
GITVERSION= 5c9a37d
FETCH_ARGS= -pRr
WRKSRC= ${WRKDIR}/lcastelli-${PORTNAME}-${GITVERSION}
CONFIGURE_ARGS= --with-libcmph-dir=${LOCALBASE}/lib
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (PECL/lcastelli-chdb-v1.0.1-0-g1.0.1.tar.gz) = 3e95bdd8b450770629587ebbb767a2cecbe7b1e2d39715cd02f69fba3f5d2d8d
SIZE (PECL/lcastelli-chdb-v1.0.1-0-g1.0.1.tar.gz) = 9568

View file

@ -0,0 +1,3 @@
chdb implements a read-only memory mapped hash-table for PHP.
WWW: https://github.com/lcastelli/chdb/