homebrew-core/Formula/atk.rb

24 lines
657 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Atk < Formula
homepage 'http://library.gnome.org/devel/atk/'
2013-09-25 14:57:13 +00:00
url 'http://ftp.gnome.org/pub/gnome/sources/atk/2.10/atk-2.10.0.tar.xz'
sha256 '636917a5036bc851d8491194645d284798ec118919a828be5e713b6ecc5b50b0'
depends_on 'pkg-config' => :build
2013-02-03 20:28:59 +00:00
depends_on 'xz' => :build
depends_on 'glib'
depends_on 'gobject-introspection'
2012-07-30 20:16:02 +00:00
option :universal
def install
2012-07-30 20:16:02 +00:00
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-introspection=yes"
system "make"
system "make install"
end
end