Skip to content

Instantly share code, notes, and snippets.

@awmichel
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awmichel/9792488 to your computer and use it in GitHub Desktop.
Save awmichel/9792488 to your computer and use it in GitHub Desktop.
Homebrew Formula for LibRETS 1.6.0
require 'formula'
class Librets < Formula
homepage 'http://code.crt.realtors.org/projects/librets'
url 'http://www.crt.realtors.org/projects/rets/librets/files/librets-1.6.0.tar.gz'
sha1 '3f671a57503e848e62a2805e789c86b56ad4b26d'
depends_on 'swig'
depends_on 'boost'
def install
system "./configure", "--disable-debug",
"--enable-shared_dependencies",
"--prefix=#{prefix}",
"--disable-dotnet",
"--disable-java",
"--disable-perl",
"--disable-php",
"--disable-python",
"--disable-ruby"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment