homebrew-core/Formula/liblunar.rb

16 lines
398 B
Ruby
Raw Normal View History

2010-03-12 18:05:26 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Liblunar < Formula
2010-03-12 18:05:26 +00:00
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