d87063d32f
These dependencies are automatically detected from the URL, so declaring them is redundant. If these formulae ever get a head or devel spec, then explicit xz deps would need to be re-scoped appropriately. Thus we should remove them.
17 lines
481 B
Ruby
17 lines
481 B
Ruby
require 'formula'
|
|
|
|
class AtSpi2Atk < Formula
|
|
homepage 'http://a11y.org'
|
|
url 'http://ftp.gnome.org/pub/gnome/sources/at-spi2-atk/2.10/at-spi2-atk-2.10.2.tar.xz'
|
|
sha256 'e348a811c4830251f0c3018019072e7979ef35fb9b7f0b1b0a0dd1e66942d0f5'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'at-spi2-core'
|
|
depends_on 'atk'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|