1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Igbinary is a drop in replacement for the standard PHP serializer.

Instead of time and space consuming textual representation, igbinary
stores PHP data structures in a compact binary form. Savings are
significant when using memcached or similar memory based storages for
serialized data.

WWW:	http://opensource.dynamoid.com/

PR:		ports/137308
Submitted by:	Gea-Suan Lin <gslin at gslin.org>
This commit is contained in:
Martin Wilke 2009-08-14 09:21:52 +00:00
parent 2772be9399
commit ccd270420b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=239508
4 changed files with 32 additions and 0 deletions

View File

@ -28,6 +28,7 @@
SUBDIR += iconv
SUBDIR += iconv-extra
SUBDIR += iconv-rfc1345
SUBDIR += igbinary
SUBDIR += ish
SUBDIR += konwert
SUBDIR += ktextdecode

View File

@ -0,0 +1,21 @@
# New ports collection makefile for: igbinary
# Date created: 2009-06-05
# Whom: Gea-Suan Lin <gslin@gslin.org>
#
# $FreeBSD$
#
PORTNAME= igbinary
PORTVERSION= 1.0.1
CATEGORIES= converters
MASTER_SITES= http://opensource.dynamoid.com/
MAINTAINER= gslin@gslin.org
COMMENT= Replacement for the standard PHP serializer
USE_PHP= session
USE_PHP_BUILD= yes
USE_PHPIZE= yes
USE_PHPEXT= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (igbinary-1.0.1.tar.gz) = dafdf33406524b175bd6124d5e51682b
SHA256 (igbinary-1.0.1.tar.gz) = 940808c3d9ea09dfe2db85b0cddd9371cdea40de1e8c1e248a3015719fd21ae0
SIZE (igbinary-1.0.1.tar.gz) = 24706

View File

@ -0,0 +1,7 @@
Igbinary is a drop in replacement for the standard PHP serializer.
Instead of time and space consuming textual representation, igbinary
stores PHP data structures in a compact binary form. Savings are
significant when using memcached or similar memory based storages for
serialized data.
WWW: http://opensource.dynamoid.com/