homebrew-core/Formula/tokyo-cabinet.rb

14 lines
347 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class TokyoCabinet < Formula
homepage 'http://fallabs.com/tokyocabinet/'
2012-06-04 01:56:33 +00:00
url 'http://fallabs.com/tokyocabinet/tokyocabinet-1.4.47.tar.gz'
sha1 '18608ac2e6e469e20d1c36ae1117661bb47901c4'
def install
system "./configure", "--prefix=#{prefix}", "--enable-fastest"
system "make"
system "make install"
end
end