diff options
| -rw-r--r-- | Library/Formula/libmxml.rb | 8 |
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 |
