homebrew-core/Formula/tokyo-cabinet.rb
Ian Lancaster be9449714d tokyo-cabinet 1.4.48
Closes Homebrew/homebrew#19611.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-05-05 08:55:04 -07:00

13 lines
373 B
Ruby

require 'formula'
class TokyoCabinet < Formula
homepage 'http://fallabs.com/tokyocabinet/'
url 'http://fallabs.com/tokyocabinet/tokyocabinet-1.4.48.tar.gz'
sha256 'a003f47c39a91e22d76bc4fe68b9b3de0f38851b160bbb1ca07a4f6441de1f90'
def install
system "./configure", "--prefix=#{prefix}", "--enable-fastest"
system "make"
system "make install"
end
end