atk 1.28.0

ATK - Accessibility Toolkit
ATK provides the set of accessibility interfaces that are implemented by
other toolkits and applications.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Kevin M. Dulzo 2010-02-25 22:06:31 -06:00 committed by Adam Vandenberg
parent 418e86f87e
commit 9a02196aa2

15
Formula/atk.rb Normal file
View file

@ -0,0 +1,15 @@
require 'formula'
class Atk <Formula
url 'ftp://ftp.gnome.org/pub/gnome/sources/atk/1.28/atk-1.28.0.tar.bz2'
homepage 'http://library.gnome.org/devel/atk/'
md5 '010a85478adc053c016a0a5c9bb52004'
depends_on 'pkg-config'
depends_on 'glib'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end