homebrew-core/Formula/msgpack.rb
Ches Martin 09fc555100 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>
2010-07-02 19:26:43 -07:00

12 lines
349 B
Ruby

require 'formula'
class Msgpack <Formula
url 'http://downloads.sourceforge.net/project/msgpack/msgpack/cpp/msgpack-0.4.3.tar.gz'
homepage 'http://msgpack.sourceforge.net/'
md5 'ae55b5a48221fabc587a9ff2b0b6106e'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end