homebrew-core/Formula/libart.rb

13 lines
383 B
Ruby
Raw Normal View History

2010-02-07 22:31:34 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Libart < Formula
2010-02-07 22:31:34 +00:00
url 'http://ftp.gnome.org/pub/gnome/sources/libart_lgpl/2.3/libart_lgpl-2.3.20.tar.bz2'
sha1 '40aa6c6c5fb27a8a45cd7aaa302a835ff374d13a'
2010-02-07 22:31:34 +00:00
homepage 'http://freshmeat.net/projects/libart/'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end