homebrew-core/Formula/tokyo-cabinet.rb

14 lines
338 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class TokyoCabinet < Formula
2011-03-30 03:23:20 +00:00
url 'http://fallabs.com/tokyocabinet/tokyocabinet-1.4.47.tar.gz'
homepage 'http://fallabs.com/tokyocabinet/'
2011-03-30 03:23:20 +00:00
md5 '3d94fe2aebf5d9ff0478ed895bc46fc9'
def install
system "./configure", "--prefix=#{prefix}", "--enable-fastest"
system "make"
system "make install"
end
end