01f686aad2
PureDB is a portable and tiny set of libraries for creating and reading constant databases. It manages data files that contains text or binary key/data pairs of arbitrary sizes. Lookups are very fast (normally only one disk access to match a hash value), overhead is low (a database is 1028 bytes plus only 16 extra bytes per record), multiple concurrent read access are supported, and databases can be up to 4 Gb long, and they are portable across architectures. PR: ports/48901 Submitted by: Sergei Kolobov <sergei@kolobov.com>
29 lines
597 B
Makefile
29 lines
597 B
Makefile
# New ports collection makefile for: puredb
|
|
# Date created: 01 Nov 2002
|
|
# Whom: Sergei Kolobov <sergei@kolobov.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= puredb
|
|
PORTVERSION= 2.1
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.pureftpd.org/puredb/
|
|
DISTNAME= pure-db-${PORTVERSION}
|
|
|
|
MAINTAINER= sergei@kolobov.com
|
|
COMMENT= Set of libraries for creating and reading constant databases
|
|
|
|
USE_LIBTOOL= yes
|
|
INSTALLS_SHLIB= yes
|
|
|
|
DOCS= AUTHORS FORMAT_DESCR NEWS README
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|