aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/atk.rb
diff options
context:
space:
mode:
authorKevin M. Dulzo2010-02-25 22:06:31 -0600
committerAdam Vandenberg2010-02-26 09:14:59 -0800
commitd5119b75eca50c0250b14b87571f85d41639ad65 (patch)
tree0783792fc32bc914ebddad1e433191b8250629bf /Library/Formula/atk.rb
parent0d0d7cde984aaa51cd0f939c9ecfe714a4c29323 (diff)
downloadhomebrew-d5119b75eca50c0250b14b87571f85d41639ad65.tar.bz2
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>
Diffstat (limited to 'Library/Formula/atk.rb')
-rw-r--r--Library/Formula/atk.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/atk.rb b/Library/Formula/atk.rb
new file mode 100644
index 000000000..0eda6ccd2
--- /dev/null
+++ b/Library/Formula/atk.rb
@@ -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