Tokyo Tyrant formula

A network interface for concurrent and remote connections to Tokyo 
Cabinet.
master
Mihai Anca 2009-10-19 19:58:45 +01:00 committed by Max Howell
parent 2327cce322
commit b184e053ed
1 changed files with 16 additions and 0 deletions

16
Formula/tokyo-tyrant.rb Normal file
View File

@ -0,0 +1,16 @@
require 'formula'
class TokyoTyrant <Formula
url 'http://1978th.net/tokyotyrant/tokyotyrant-1.1.36.tar.gz'
homepage 'http://1978th.net/tokyotyrant/'
sha1 '116c413affdc649602439adc815c9dcb133cc502'
depends_on 'tokyo-cabinet'
depends_on 'lua'
def install
system "./configure", "--prefix=#{prefix}", "--with-lua", "--enable-lua"
system "make"
system "make install"
end
end