homebrew-core/Formula/atk.rb
Kieran Ramos 3c9d65cd8a atk: enable gobject-introspection
Closes Homebrew/homebrew#23248.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-10-18 19:26:37 -05:00

23 lines
657 B
Ruby

require 'formula'
class Atk < Formula
homepage 'http://library.gnome.org/devel/atk/'
url 'http://ftp.gnome.org/pub/gnome/sources/atk/2.10/atk-2.10.0.tar.xz'
sha256 '636917a5036bc851d8491194645d284798ec118919a828be5e713b6ecc5b50b0'
depends_on 'pkg-config' => :build
depends_on 'xz' => :build
depends_on 'glib'
depends_on 'gobject-introspection'
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-introspection=yes"
system "make"
system "make install"
end
end