homebrew-core/Formula/libidl.rb

21 lines
541 B
Ruby
Raw Normal View History

2010-02-16 06:08:35 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Libidl < Formula
2010-02-16 06:08:35 +00:00
homepage 'http://ftp.acc.umu.se/pub/gnome/sources/libIDL/0.8/'
2012-08-10 05:13:32 +00:00
url 'http://ftp.acc.umu.se/pub/gnome/sources/libIDL/0.8/libIDL-0.8.14.tar.bz2'
sha1 'abedf091bef0c7e65162111baf068dcb739ffcd3'
2012-08-10 05:13:32 +00:00
option :universal
depends_on 'pkg-config' => :build
2010-02-16 06:08:35 +00:00
depends_on 'gettext'
depends_on 'glib'
def install
2012-08-10 05:13:32 +00:00
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
2010-02-16 06:08:35 +00:00
system "make install"
end
end