libgnomecanvas 2.30.3

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Birger J. Nordølum 2011-05-26 01:20:28 +02:00 committed by Adam Vandenberg
parent 848ef93c03
commit 3036530cf8

22
Formula/libgnomecanvas.rb Normal file
View file

@ -0,0 +1,22 @@
require 'formula'
class Libgnomecanvas < Formula
homepage 'http://developer.gnome.org/libgnomecanvas/2.30/'
url 'ftp://ftp.gnome.org/pub/gnome/sources/libgnomecanvas/2.30/libgnomecanvas-2.30.3.tar.bz2'
sha256 '859b78e08489fce4d5c15c676fec1cd79782f115f516e8ad8bed6abcb8dedd40'
depends_on 'pkg-config' => :build
depends_on 'intltool'
depends_on 'libglade'
depends_on 'libart'
depends_on 'gettext'
depends_on 'gtk'
def install
system "./configure", "--disable-dependency-tracking",
"--disable-static",
"--prefix=#{prefix}",
"--enable-glade"
system "make install"
end
end