aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/atk.rb
blob: 9dc30d20b49b45e845e48d587bf32ba9c4f0e8c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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