88779ade49
Closes Homebrew/homebrew#14653.
13 lines
347 B
Ruby
13 lines
347 B
Ruby
require 'formula'
|
|
|
|
class TokyoCabinet < Formula
|
|
homepage 'http://fallabs.com/tokyocabinet/'
|
|
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
|