2014-09-23 05:20:56 +00:00
|
|
|
require "formula"
|
2010-02-26 04:06:31 +00:00
|
|
|
|
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"
|
2010-02-26 04:06:31 +00:00
|
|
|
|
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"
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2012-07-30 20:16:02 +00:00
|
|
|
option :universal
|
2012-02-04 06:05:49 +00:00
|
|
|
|
2010-02-26 04:06:31 +00:00
|
|
|
def install
|
2012-07-30 20:16:02 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2012-02-04 06:05:49 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
2013-10-13 18:04:24 +00:00
|
|
|
"--enable-introspection=yes"
|
2011-10-14 05:55:37 +00:00
|
|
|
system "make"
|
2010-02-26 04:06:31 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|