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

23 lines
635 B
Ruby
Raw Normal View History

2013-02-02 06:42:35 +00:00
require 'formula'
class AtSpi2Core < Formula
homepage 'http://a11y.org'
2013-03-30 02:43:12 +00:00
url 'http://ftp.acc.umu.se/pub/GNOME/sources/at-spi2-core/2.8/at-spi2-core-2.8.0.tar.xz'
sha256 '1861a30fc7f583d5a567a0ba547db67ce9bd294f0d1c9f7403c96a10a481c458'
2013-02-02 06:42:35 +00:00
depends_on 'pkg-config' => :build
depends_on 'xz' => :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