diff options
| author | Jack Nagel | 2013-02-02 00:42:35 -0600 |
|---|---|---|
| committer | Jack Nagel | 2013-02-02 18:47:06 -0600 |
| commit | dca8b2e9bdea7d783669b68a02f33537ff120b2e (patch) | |
| tree | 6238e3ea609d4a51ad252f2370f8239b0165238f | |
| parent | a0f3ecae6485167d032723e3c3dd5260088dce73 (diff) | |
| download | homebrew-dca8b2e9bdea7d783669b68a02f33537ff120b2e.tar.bz2 | |
New formula: at-spi2-core 2.6.3
| -rw-r--r-- | Library/Formula/at-spi2-core.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Library/Formula/at-spi2-core.rb b/Library/Formula/at-spi2-core.rb new file mode 100644 index 000000000..13a6c6b17 --- /dev/null +++ b/Library/Formula/at-spi2-core.rb @@ -0,0 +1,22 @@ +require 'formula' + +class AtSpi2Core < Formula + homepage 'http://a11y.org' + url 'http://ftp.acc.umu.se/pub/GNOME/sources/at-spi2-core/2.6/at-spi2-core-2.6.3.tar.xz' + sha256 'fc4487ae46e847cfd057b329b852cf99923772ecd2ddc29f29670c9f2b15d0ea' + + depends_on 'pkg-config' => :build + depends_on 'xz' => :build + depends_on 'intltool' => :build + depends_on 'gettext' + depends_on 'glib' + depends_on 'd-bus' + depends_on :x11 + + def install + system "./configure", "--disable-dependency-tracking", + "--prefix=#{prefix}", + "--enable-introspection=no" + system "make install" + end +end |
