blob: 15b554929ce722dfbc9b1bd186450a0c0e14b2da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class TokyoCabinet <Formula
url 'http://fallabs.com/tokyocabinet/tokyocabinet-1.4.46.tar.gz'
homepage 'http://fallabs.com/tokyocabinet/'
md5 '341dadd1f3d68760e350f7e731111786'
def install
system "./configure", "--prefix=#{prefix}", "--enable-fastest"
system "make"
system "make install"
end
end
|