New formula liblunar

master
David Höppner 2010-03-12 19:05:26 +01:00
parent b68bcc9b59
commit 9deb528559
1 changed files with 15 additions and 0 deletions

15
Formula/liblunar.rb Normal file
View File

@ -0,0 +1,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