aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/librets.rb
blob: ee80e9bf6857ff0e7d3822a4f53a665c94eeafb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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'

  depends_on 'boost'

  def install
    # 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}",
                          "--disable-dotnet",
                          "--disable-java",
                          "--disable-perl",
                          "--disable-php",
                          "--disable-python"
    system "make install"
  end
end