2012-05-12 19:10:37 +00:00
|
|
|
class Arangodb < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Universal open-source database with a flexible data model"
|
2015-07-03 05:36:41 +00:00
|
|
|
homepage "https://www.arangodb.com/"
|
2016-03-12 12:36:48 +00:00
|
|
|
url "https://www.arangodb.com/repositories/Source/ArangoDB-2.8.5.tar.gz"
|
|
|
|
sha256 "d09a046120371de42842fe6506d4ab37032b8e228afafba83f6f0fad2b4403ee"
|
2012-05-12 19:10:37 +00:00
|
|
|
|
2015-07-03 05:36:41 +00:00
|
|
|
head "https://github.com/arangodb/arangodb.git", :branch => "unstable"
|
2012-05-12 19:10:37 +00:00
|
|
|
|
2016-02-17 10:04:02 +00:00
|
|
|
bottle do
|
2016-03-12 17:24:19 +00:00
|
|
|
sha256 "dab863de242a3bcfb833e2335135748657df740e37bac845a057e886e07635e2" => :el_capitan
|
|
|
|
sha256 "6b048787352f99f64720a0a6de04519f9e1488d3a20be37f1e3b0c6e1cd77fb2" => :yosemite
|
|
|
|
sha256 "acd9a070e1dd54e345160ac72378f276ad3b9c5819f72d2ff759299efa908911" => :mavericks
|
2016-02-17 10:04:02 +00:00
|
|
|
end
|
|
|
|
|
2015-07-03 05:36:41 +00:00
|
|
|
depends_on "go" => :build
|
|
|
|
depends_on "openssl"
|
2012-05-12 19:10:37 +00:00
|
|
|
|
2014-07-12 18:47:14 +00:00
|
|
|
needs :cxx11
|
|
|
|
|
2015-10-11 21:10:38 +00:00
|
|
|
fails_with :clang do
|
|
|
|
build 600
|
|
|
|
cause "Fails with compile errors"
|
|
|
|
end
|
|
|
|
|
2012-05-12 19:10:37 +00:00
|
|
|
def install
|
2014-07-12 18:47:14 +00:00
|
|
|
# clang on 10.8 will still try to build against libstdc++,
|
|
|
|
# which fails because it doesn't have the C++0x features
|
|
|
|
# arangodb requires.
|
|
|
|
ENV.libcxx
|
|
|
|
|
2013-04-14 09:57:04 +00:00
|
|
|
args = %W[
|
|
|
|
--disable-dependency-tracking
|
|
|
|
--prefix=#{prefix}
|
|
|
|
--disable-relative
|
|
|
|
--datadir=#{share}
|
|
|
|
--localstatedir=#{var}
|
|
|
|
]
|
|
|
|
|
2015-06-21 18:11:31 +00:00
|
|
|
args << "--program-suffix=-unstable" if build.head?
|
2014-10-21 07:05:33 +00:00
|
|
|
|
2016-02-10 09:24:56 +00:00
|
|
|
if ENV.compiler != :clang
|
|
|
|
ENV.append "LDFLAGS", "-static-libgcc -static-libstdc++"
|
|
|
|
end
|
|
|
|
|
2013-04-14 09:57:04 +00:00
|
|
|
system "./configure", *args
|
2015-07-03 05:36:41 +00:00
|
|
|
system "make", "install"
|
2016-01-20 11:38:22 +00:00
|
|
|
end
|
2012-05-12 19:10:37 +00:00
|
|
|
|
2016-01-20 11:38:22 +00:00
|
|
|
def post_install
|
2015-07-03 05:36:41 +00:00
|
|
|
(var/"arangodb").mkpath
|
|
|
|
(var/"log/arangodb").mkpath
|
2012-05-12 19:10:37 +00:00
|
|
|
|
2015-06-21 18:11:31 +00:00
|
|
|
system "#{sbin}/arangod" + (build.head? ? "-unstable" : ""), "--upgrade", "--log.file", "-"
|
2014-06-07 07:14:11 +00:00
|
|
|
end
|
|
|
|
|
2016-02-10 09:24:56 +00:00
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
Please note that clang and/or its standard library 7.0.0 has a severe
|
|
|
|
performance issue. Please consider using '--cc=gcc-5' when installing
|
|
|
|
if you are running on such a system.
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2015-06-21 18:11:31 +00:00
|
|
|
plist_options :manual => "#{HOMEBREW_PREFIX}/opt/arangodb/sbin/arangod" + (build.head? ? "-unstable" : "") + " --log.file -"
|
2012-06-30 11:52:16 +00:00
|
|
|
|
2012-11-25 15:06:41 +00:00
|
|
|
def plist; <<-EOS.undent
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
|
|
<plist version="1.0">
|
|
|
|
<dict>
|
|
|
|
<key>KeepAlive</key>
|
|
|
|
<true/>
|
|
|
|
<key>Label</key>
|
|
|
|
<string>#{plist_name}</string>
|
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
2014-03-06 05:28:31 +00:00
|
|
|
<string>#{opt_sbin}/arangod</string>
|
2012-11-25 15:06:41 +00:00
|
|
|
<string>-c</string>
|
|
|
|
<string>#{etc}/arangodb/arangod.conf</string>
|
|
|
|
</array>
|
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
2012-06-30 11:52:16 +00:00
|
|
|
EOS
|
|
|
|
end
|
2012-05-12 19:10:37 +00:00
|
|
|
end
|