aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAnthony Ramine2012-04-08 11:54:44 +0200
committerAdam Vandenberg2012-04-16 20:40:55 -0700
commit40e91b7e2b944a92a6511c9fc61041172db17a5d (patch)
tree774dc1d464f820a1025b695385ec9931db608f15 /Library/Formula
parentf5c403d9a55b175b374da67506c756b53b43c3f9 (diff)
downloadhomebrew-40e91b7e2b944a92a6511c9fc61041172db17a5d.tar.bz2
libcaca 0.99.beta18
The formula now properly depends on imlib2 to enable support of other formats than BMP. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libcaca.rb16
1 files changed, 9 insertions, 7 deletions
diff --git a/Library/Formula/libcaca.rb b/Library/Formula/libcaca.rb
index 40f67f95e..ac66ac756 100644
--- a/Library/Formula/libcaca.rb
+++ b/Library/Formula/libcaca.rb
@@ -2,12 +2,12 @@ require 'formula'
class Libcaca < Formula
homepage 'http://caca.zoy.org/wiki/libcaca'
- url 'http://caca.zoy.org/files/libcaca/libcaca-0.99.beta17.tar.gz'
- version '0.99b17'
- md5 '790d6e26b7950e15909fdbeb23a7ea87'
+ url 'http://caca.zoy.org/files/libcaca/libcaca-0.99.beta18.tar.gz'
+ version '0.99b18'
+ md5 '93d35dbdb0527d4c94df3e9a02e865cc'
depends_on 'pkg-config' => :build
- depends_on 'gettext'
+ depends_on 'imlib2'
fails_with :llvm do
cause "Unsupported inline asm: input constraint with a matching output constraint of incompatible type"
@@ -22,16 +22,18 @@ class Libcaca < Formula
# Don't build csharp bindings
# Don't build ruby bindings; fails for adamv w/ Homebrew Ruby 1.9.2
+ # Don't build python bindings:
+ # ../.auto/py-compile: Missing argument to --destdir.
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
- "--mandir=#{man}",
- "--disable-imlib2",
+ "--disable-python",
"--disable-doc",
"--disable-slang",
"--disable-java",
"--disable-csharp",
"--disable-ruby"
+ system "make"
ENV.j1 # Or install can fail making the same folder at the same time
system "make install"
end