7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
17 lines
489 B
Ruby
17 lines
489 B
Ruby
require 'formula'
|
|
|
|
class Atk <Formula
|
|
url 'ftp://ftp.gnome.org/pub/gnome/sources/atk/1.30/atk-1.30.0.tar.bz2'
|
|
homepage 'http://library.gnome.org/devel/atk/'
|
|
sha256 '92b9b1213cafc68fe9c3806273b968c26423237d7b1f631dd83dc5270b8c268c'
|
|
|
|
depends_on 'pkg-config'
|
|
depends_on 'glib'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--disable-glibtest"
|
|
system "make install"
|
|
end
|
|
end
|