1577af0372
This reverts commit 90575346225fd0c16475ad74ee53b37b62715f0c. Closes Homebrew/homebrew#28026.
27 lines
824 B
Ruby
27 lines
824 B
Ruby
require 'formula'
|
|
|
|
class AtSpi2Core < Formula
|
|
homepage 'http://a11y.org'
|
|
url 'http://ftp.gnome.org/pub/GNOME/sources/at-spi2-core/2.12/at-spi2-core-2.12.0.tar.xz'
|
|
sha256 'db550edd98e53b4252521459c2dcaf0f3b060a9bad52489b9dbadbaedad3fb89'
|
|
|
|
bottle do
|
|
sha1 "ddf80fbbe58a704dc6bab85472c73f28f343078f" => :mavericks
|
|
sha1 "ebc0bca7a9c5eebfdf57eb22b473a94d714dda09" => :mountain_lion
|
|
sha1 "5cfe5fae100a7787ff8d3a6199ff9d0fed61cc3f" => :lion
|
|
end
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'intltool' => :build
|
|
depends_on 'gettext'
|
|
depends_on 'glib'
|
|
depends_on 'd-bus'
|
|
depends_on :x11
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--enable-introspection=no"
|
|
system "make install"
|
|
end
|
|
end
|