Last active
August 29, 2015 13:57
-
-
Save awmichel/9792488 to your computer and use it in GitHub Desktop.
Homebrew Formula for LibRETS 1.6.0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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