diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/librets.rb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/librets.rb b/Library/Formula/librets.rb index f184acb36..1bf328d59 100644 --- a/Library/Formula/librets.rb +++ b/Library/Formula/librets.rb @@ -5,18 +5,20 @@ class Librets < Formula 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.version >= :lion + depends_on 'boost149' def install + old_boost = Formula.factory("boost149") system "./configure", "--disable-debug", "--enable-shared_dependencies", "--prefix=#{prefix}", + "--with-boost-prefix=#{old_boost.prefix}", "--disable-dotnet", "--disable-java", "--disable-perl", "--disable-php", - "--disable-python" + "--disable-python", + "--disable-ruby" system "make install" end end |
