homebrew-core/Formula/kyoto-tycoon.rb

24 lines
581 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class KyotoTycoon < Formula
homepage 'http://fallabs.com/kyototycoon/'
url 'http://fallabs.com/kyototycoon/pkg/kyototycoon-0.9.55.tar.gz'
sha1 'bd301b3d355788ae89e09a092b1d469f8a69f411'
depends_on 'lua' unless ARGV.include? "--no-lua"
depends_on 'kyoto-cabinet'
def options
[["--no-lua", "Disable Lua support (and don't force Lua install.)"]]
end
def install
args = ["--prefix=#{prefix}"]
args << "--enable-lua" unless ARGV.include? "--no-lua"
system "./configure", *args
system "make"
system "make install"
end
end