homebrew-core/Formula/libgnomecanvas.rb
Jack Nagel 1577af0372 Revert "Use download.gnome.org instead of ftp.gnome.org"
This reverts commit 90575346225fd0c16475ad74ee53b37b62715f0c.

Closes Homebrew/homebrew#28026.
2014-04-03 09:29:23 -05:00

22 lines
691 B
Ruby

require 'formula'
class Libgnomecanvas < Formula
homepage 'http://developer.gnome.org/libgnomecanvas/2.30/'
url 'http://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' => :build
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