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

19 lines
507 B
Ruby
Raw Normal View History

2013-02-02 06:49:39 +00:00
require 'formula'
class AtSpi2Atk < Formula
homepage 'http://a11y.org'
2013-04-24 19:26:32 +00:00
url 'http://ftp.gnome.org/pub/gnome/sources/at-spi2-atk/2.8/at-spi2-atk-2.8.1.tar.xz'
sha256 'eb659b94fde6dc0a2f584c9121a5e6d39a4c8aa297d21d8f9032f7a8a775fd06'
2013-02-02 06:49:39 +00:00
depends_on 'pkg-config' => :build
depends_on 'xz' => :build
depends_on 'at-spi2-core'
depends_on 'atk'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end