diff options
| author | Mathew Oakes | 2010-12-28 15:24:17 +1100 |
|---|---|---|
| committer | Mike McQuaid | 2010-12-28 14:07:04 +0000 |
| commit | c13d385372e10fb0e965d32f250cbf6bdcb3503b (patch) | |
| tree | f10cdf0fa586e0b4ed2663928648896f582221ad /Library | |
| parent | 38aa141554ef5287c3b446a372eda60138a5a49d (diff) | |
| download | homebrew-c13d385372e10fb0e965d32f250cbf6bdcb3503b.tar.bz2 | |
Add Abiword 2.8.6 formula.
Closes #3721.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/abiword.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Library/Formula/abiword.rb b/Library/Formula/abiword.rb new file mode 100644 index 000000000..f1241de25 --- /dev/null +++ b/Library/Formula/abiword.rb @@ -0,0 +1,22 @@ +require 'formula' + +class Abiword <Formula + url 'http://www.abisource.com/downloads/abiword/2.8.6/source/abiword-2.8.6.tar.gz' + homepage 'http://www.abisource.com/' + md5 'f883b0a7f26229a9c66fd6a1a94381aa' + + depends_on 'jpeg' + depends_on 'fribidi' + depends_on 'libgsf' + depends_on 'enchant' + depends_on 'cairo' + depends_on 'pango' + depends_on 'imagemagick' + + def install + ENV.libpng + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end |
