MMapDB implements a database similar to a hash of hashes of hashes, ..., of arrays of data. It's main design goals were: * very fast read access * lock-free read access for massive parallelism * minimal memory consumption per accessing process * transaction based write access * simple backup, compactness, one file
21 lines
541 B
Makefile
Executable file
21 lines
541 B
Makefile
Executable file
# $NetBSD: Makefile,v 1.1.1.1 2010/04/21 15:33:55 uccwen Exp $
|
|
#
|
|
|
|
DISTNAME= MMapDB-0.08
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= databases
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=../../authors/id/O/OP/OPI/}
|
|
|
|
MAINTAINER= wenheping@gmail.com
|
|
HOMEPAGE= http://search.cpan.org/dist/MMapDB
|
|
COMMENT= Simple database in shared memory
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
DEPENDS+= p5-File-Map>=0:../../wip/p5-File-Map
|
|
|
|
PERL5_PACKLIST= auto/MMapDB/.packlist
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|