aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2012-06-27 12:19:32 -0700
committerAdam Vandenberg2012-06-27 12:19:32 -0700
commitc46bce68506c957cf35b9821468a064dda74b47a (patch)
treec1a1c1c410f2b327d5d107bbf523283a2ad803b3
parent0c1fa22a9f8bf69a0eaf53ccaf558bc14426303a (diff)
downloadhomebrew-c46bce68506c957cf35b9821468a064dda74b47a.tar.bz2
libmxml 2.7
Also fix hard-coded /Developer path.
-rw-r--r--Library/Formula/libmxml.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/Library/Formula/libmxml.rb b/Library/Formula/libmxml.rb
index a2dad864c..f75cbc266 100644
--- a/Library/Formula/libmxml.rb
+++ b/Library/Formula/libmxml.rb
@@ -1,15 +1,19 @@
require 'formula'
class Libmxml < Formula
- url 'http://ftp.easysw.com/pub/mxml/2.6/mxml-2.6.tar.gz'
homepage 'http://www.minixml.org/'
- md5 '68977789ae64985dddbd1a1a1652642e'
+ url 'http://ftp.easysw.com/pub/mxml/2.7/mxml-2.7.tar.gz'
+ sha1 'a3bdcab48307794c297e790435bcce7becb9edae'
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--enable-shared",
"--prefix=#{prefix}"
+
+ # Makefile hard-codes the path to /Developer
+ inreplace "Makefile", "/Developer/usr/bin/docsetutil", MacOS.locate('docsetutil')
+
system "make"
system "make install"
end