homebrew-core/Formula/atk.rb

29 lines
845 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-09-23 05:20:56 +00:00
sha1 "b2ca7320d38039694c3258b9d11acaf47f5a3753" => :mavericks
sha1 "c04320419d8bac71188e0f01d7a5914fce0cf296" => :mountain_lion
sha1 "913adb577075b21f48f23770361f005f21259b57" => :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