pkgsrc-wip/riak/options.mk
Filip Hajny 0f6276bb69 Import riak-1.0.0rc2 as wip/riak.
Riak is a Dynamo-inspired key/value store with a distributed database
network platform that makes storing and retrieving data simple, safe
and low-cost. Riak liberates data from vulnerable centralized databases,
allowing it to escape catastrophic losses and surges while accelerating
the speed of applications. Riak has no single point of failure. Its
multiple nodes create a truly fault-tolerant system for storing any
type of mission-critical data.
2011-09-30 20:25:05 +00:00

19 lines
597 B
Makefile

# $NetBSD: options.mk,v 1.1.1.1 2011/09/30 20:25:05 fhajny Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.riak
PKG_SUPPORTED_OPTIONS= innostore
PKG_SUGGESTED_OPTIONS= #
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Minnostore)
LICENSE+= AND gnu-gpl-v2
USE_TOOLS+= perl
PLIST.innostore= yes
post-build:
cd ${WRKDIR}/innostore-${INNOVER} && ( \
${BUILD_MAKE_CMD} && \
${INSTALL_LIB_DIR} ${WRKSRC}/rel/riak/lib/innostore-${INNOVER} && \
cp -R ebin priv src ${WRKSRC}/rel/riak/lib/innostore-${INNOVER} )
.endif