aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/liblunar.rb
blob: 5939a5fe907a34746d84f4950d14393b1cccf1aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Liblunar <Formula
  url 'http://liblunar.googlecode.com/files/liblunar-2.2.4.tar.gz'
  homepage 'http://code.google.com/p/liblunar/'
  md5 '6f5a7e2f79483f572af3f896c9379b0f'

  depends_on 'gettext'
  depends_on 'intltool'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end