homebrew-core/Formula/atk.rb

30 lines
864 B
Ruby
Raw Normal View History

2014-09-23 05:20:56 +00:00
require "formula"
2011-03-10 05:11:03 +00:00
class Atk < Formula
2014-09-23 05:20:56 +00:00
homepage "http://library.gnome.org/devel/atk/"
url "http://ftp.gnome.org/pub/gnome/sources/atk/2.14/atk-2.14.0.tar.xz"
sha256 "2875cc0b32bfb173c066c22a337f79793e0c99d2cc5e81c4dac0d5a523b8fbad"
2014-02-22 18:46:47 +00:00
bottle do
2014-10-21 20:14:10 +00:00
revision 1
sha1 "5a014bce43ff14675bec23b61909d3d85cff20f1" => :yosemite
sha1 "f75b7b55547cb58c87fd35e38e8cdba0877516f8" => :mavericks
sha1 "8aa05a84f58854ba26258d0d206c4e2fb663eb16" => :mountain_lion
2014-02-22 18:46:47 +00:00
end
2014-09-23 05:20:56 +00:00
depends_on "pkg-config" => :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