forked from necromant2005/homebrew-boneyard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrets.rb
24 lines (21 loc) · 861 Bytes
/
librets.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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.5.3.tar.gz"
sha1 "2de4d9e9cb26533eb0a9a090b3354a70ed3c41ec"
depends_on "homebrew/versions/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-ruby"
system "make install"
end
end