homebrew-core/Formula/atk.rb

29 lines
845 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'
bottle do
sha1 "f2d6e44d20954bc11b0b031d95c2b8def08227ac" => :mavericks
sha1 "a001261286b17f0c43fce8f1f267a3e19d133bc9" => :mountain_lion
sha1 "30c7d64a0836a73d68ead846db528ab0479930d5" => :lion
end
depends_on 'pkg-config' => :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