diff options
| author | nibbles 2bits | 2012-07-14 13:50:36 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-07-16 20:40:29 -0700 |
| commit | 52590bf417f7134a45e937e0c6004232bc55e330 (patch) | |
| tree | b0cce4481ee29d6860680239a84a8d13d1e525ac /Library/Formula | |
| parent | ca4ac97f61fbcd17a8f39a303207743065e97918 (diff) | |
| download | homebrew-52590bf417f7134a45e937e0c6004232bc55e330.tar.bz2 | |
libcroco 0.6.5
Add `--disable-Bsymbolic` to stop an unrecognized flag link error.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/libcroco.rb | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Library/Formula/libcroco.rb b/Library/Formula/libcroco.rb index a1224a2ee..355075078 100644 --- a/Library/Formula/libcroco.rb +++ b/Library/Formula/libcroco.rb @@ -1,16 +1,19 @@ require 'formula' class Libcroco < Formula - url 'ftp://ftp.gnome.org/pub/GNOME/sources/libcroco/0.6/libcroco-0.6.2.tar.bz2' - md5 '1429c597aa4b75fc610ab3a542c99209' homepage 'http://www.freespiders.org/projects/libcroco/' + url 'http://ftp.gnome.org/pub/GNOME/sources/libcroco/0.6/libcroco-0.6.5.tar.xz' + sha256 '2c6959c3644e889264a61c35ddf17401c86943681d4fe3c1682ecd9acabda7e3' depends_on 'pkg-config' => :build + depends_on 'xz' => :build depends_on 'glib' depends_on 'intltool' def install - system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" - system "make install" + system "./configure", "--disable-dependency-tracking", + "--prefix=#{prefix}", + "--disable-Bsymbolic" + system 'make install' end end |
