homebrew-core/Formula/libidl.rb

28 lines
772 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
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'
2014-07-03 19:34:33 +00:00
bottle do
cellar :any
sha1 "180ee43bd107ff66958c084e07cee49dfebe3ad8" => :mavericks
sha1 "67b52367b3837a35a040756e9527843c7c128c7d" => :mountain_lion
sha1 "32f78e432853dfddafed4a616f55e3dcde64ccd0" => :lion
end
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