homebrew-core/Formula/at-spi2-core.rb

28 lines
828 B
Ruby
Raw Normal View History

2014-09-23 05:20:56 +00:00
require "formula"
2013-02-02 06:42:35 +00:00
class AtSpi2Core < Formula
2014-09-23 05:20:56 +00:00
homepage "http://a11y.org"
2014-11-19 05:13:01 +00:00
url "http://ftp.gnome.org/pub/GNOME/sources/at-spi2-core/2.14/at-spi2-core-2.14.1.tar.xz"
sha256 "eef9660b14fdf0fb1f30d1be7c72d591fa7cbb87b00ca3a444425712f46ce657"
2013-02-02 06:42:35 +00:00
2014-03-28 17:23:57 +00:00
bottle do
2014-11-19 05:24:06 +00:00
sha1 "55a2b1ac3135f842dcc0b6a6549fd8759dba04d9" => :yosemite
sha1 "b36adb7ba21229a29bd197a2c608590c3bd4fc40" => :mavericks
sha1 "40096cac5242b87318ee81ccc07252e1a6a5331c" => :mountain_lion
2014-03-28 17:23:57 +00:00
end
2014-09-23 05:20:56 +00:00
depends_on "pkg-config" => :build
depends_on "intltool" => :build
depends_on "gettext"
depends_on "glib"
depends_on "d-bus"
2013-02-02 06:42:35 +00:00
depends_on :x11
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-introspection=no"
system "make install"
end
end