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:
parent
418e86f87e
commit
9a02196aa2
1 changed files with 15 additions and 0 deletions
15
Formula/atk.rb
Normal file
15
Formula/atk.rb
Normal 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
|
Loading…
Reference in a new issue