aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/kyoto-tycoon.rb
blob: 7cfda97deba1e3f15a08b815319e1c6270edd530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'formula'

class KyotoTycoon <Formula
  url 'http://fallabs.com/kyototycoon/pkg/kyototycoon-0.9.23.tar.gz'
  homepage 'http://fallabs.com/kyototycoon/'
  md5 '115aae62590dd20ed54f6c346cb313cd'

  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