New formula: kumofs 0.4.8

Kumofs is a simple and fast distributed key-value store, with Tokyo
Cabinet-backed storage and memcached protocol compatibility. Data is
partitioned and replicated over multiple servers with automatic
rebalancing.

http://kumofs.sourceforge.net/
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Ches Martin 2010-07-02 06:11:09 +07:00 committed by Adam Vandenberg
parent 9d732bf701
commit 09fc555100
2 changed files with 20 additions and 1 deletions

19
Formula/kumofs.rb Normal file
View File

@ -0,0 +1,19 @@
require 'formula'
class Kumofs <Formula
url 'http://github.com/downloads/etolabo/kumofs/kumofs-0.4.8.tar.gz'
head 'git://github.com/etolabo/kumofs.git'
homepage 'http://kumofs.sourceforge.net/'
md5 '8ce7bc91f86bb7e43b66cbf11af37a99'
depends_on 'tokyo-cabinet'
# msgpack rubygem and the C++ lib are needed
depends_on 'msgpack'
depends_on 'msgpack' => :ruby
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}",
"--with-msgpack=#{prefix}", "--with-tokyocabinet=#{prefix}"
system "make install"
end
end

View File

@ -6,7 +6,7 @@ class Msgpack <Formula
md5 'ae55b5a48221fabc587a9ff2b0b6106e'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end