homebrew-core/Formula/libidl.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

20 lines
540 B
Ruby

require 'formula'
class Libidl < Formula
homepage 'http://ftp.acc.umu.se/pub/gnome/sources/libIDL/0.8/'
url 'http://ftp.gnome.org/pub/gnome/sources/libIDL/0.8/libIDL-0.8.14.tar.bz2'
sha1 'abedf091bef0c7e65162111baf068dcb739ffcd3'
option :universal
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'glib'
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end