Files
haikuports/dev-db/redis/redis-2.2.11.recipe
2015-07-02 11:13:12 -04:00

27 lines
679 B
Bash

HOMEPAGE="http://redis.io/"
DESCRIPTION="
Redis is an open source, advanced key-value store. It is often referred to as \
a data structure server since keys can contain strings, hashes, lists, sets \
and sorted sets.
"
SOURCE_URI="http://redis.googlecode.com/files/redis-2.2.11.tar.gz"
REVISION="1"
DEPEND=""
CHECKSUM_MD5="5501c90ca02ae7ea93c34f067b3e0619"
STATUS_HAIKU="broken"
MESSAGE="This port only builds with gcc4. Use 'setgcc gcc4' before building."
BUILD()
{
cd redis-2.2.11
make PREFIX=`finddir B_COMMON_DIRECTORY`
}
INSTALL()
{
cd redis-2.2.11
make install PREFIX=`finddir B_COMMON_DIRECTORY`
}
LICENSE="BSD (3-clause)"
COPYRIGHT="2006-2010 Salvatore Sanfilippo"