diff options
| -rw-r--r-- | Library/Formula/librets.rb | 21 | 
1 files changed, 3 insertions, 18 deletions
diff --git a/Library/Formula/librets.rb b/Library/Formula/librets.rb index 510bdb3ad..01ff50a84 100644 --- a/Library/Formula/librets.rb +++ b/Library/Formula/librets.rb @@ -1,29 +1,14 @@  require 'formula'  class Librets < Formula -  url 'http://www.crt.realtors.org/projects/rets/librets/files/librets-1.5.2.tar.gz'    homepage 'http://code.crt.realtors.org/projects/librets' -  md5 '74bcea0eb11f3c66cde5dc3ecea05224' +  url 'http://www.crt.realtors.org/projects/rets/librets/files/librets-1.5.3.tar.gz' +  sha1 '2de4d9e9cb26533eb0a9a090b3354a70ed3c41ec'    depends_on 'boost' +  depends_on 'swig' if MacOS.lion?    def install -    # allow compilation against the OSX-provided SWIG 1.3.31 -    inreplace "configure", -      "        check=\"1.3.33\"", -      "        check=\"1.3.31\"" - -    inreplace "project/build/ac-macros/swig.m4", -      "    check=\"1.3.33\"", -      "    check=\"1.3.31\"" - -    # Allow compilation against boost 1.46.0 -    inreplace "project/librets/src/RetsExceptionContext.cpp", -      "#include <boost/filesystem/path.hpp>", -      "#define BOOST_FILESYSTEM_VERSION 2\n#include <boost/filesystem/path.hpp>" - -    # Snow Leopard's SWIG is detected as too old, -    # so disable language bindings.      system "./configure", "--disable-debug",                            "--enable-shared_dependencies",                            "--prefix=#{prefix}",  | 
