homebrew-core/Formula/tokyo-tyrant.rb
2009-10-21 02:39:29 +01:00

18 lines
534 B
Ruby

require 'formula'
class TokyoTyrant <Formula
# For some reason TT-1.1.36 wouldn't compile against TC-1.4.33
# Also it appears the Ruby (Rufus) bindings will only work with up to 1.1.33
url 'http://1978th.net/tokyotyrant/tokyotyrant-1.1.33.tar.gz'
homepage 'http://1978th.net/tokyotyrant/'
md5 '48b153ed85b5f7057eedd3ce304eca34'
depends_on 'tokyo-cabinet'
depends_on 'lua'
def install
system "./configure", "--prefix=#{prefix}", "--with-lua", "--enable-lua"
system "make"
system "make install"
end
end