homebrew-core/Formula/libmxml.rb
Jack Nagel d67381fad5 Rely on the build environment rather than use MacOS.locate
Our build environment setup ensures these tools will be on the PATH,
so we shouldn't use private API to find them.
2014-04-21 22:47:15 -05:00

22 lines
617 B
Ruby

require 'formula'
class Libmxml < Formula
homepage 'http://www.minixml.org/'
url 'http://www.msweet.org/files/project3/mxml-2.7.tar.gz'
sha1 'a3bdcab48307794c297e790435bcce7becb9edae'
depends_on :xcode # for docsetutil
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", "docsetutil"
system "make"
system "make install"
end
end