2012-05-12 19:10:37 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Arangodb < Formula
|
|
|
|
homepage 'http://www.arangodb.org/'
|
2014-11-18 21:49:03 +00:00
|
|
|
url 'https://www.arangodb.com/repositories/Source/ArangoDB-2.3.0.tar.gz'
|
|
|
|
sha1 '610135105ccc8672715bea37b9b2405f32e57f8c'
|
2012-05-12 19:10:37 +00:00
|
|
|
|
2013-04-06 20:05:12 +00:00
|
|
|
head "https://github.com/triAGENS/ArangoDB.git", :branch => 'unstable'
|
2012-05-12 19:10:37 +00:00
|
|
|
|
2014-04-07 12:08:07 +00:00
|
|
|
bottle do
|
2014-11-20 13:31:26 +00:00
|
|
|
sha1 "b71193d1af10ea161baefcc055935b7697cb0b7e" => :yosemite
|
|
|
|
sha1 "3d7f94564e2dab164e25eb1660d8b14a21dbb7cb" => :mavericks
|
|
|
|
sha1 "7f691ca2e09f83845a07ebe490dd6c31944b7e97" => :mountain_lion
|
2014-04-07 12:08:07 +00:00
|
|
|
end
|
|
|
|
|
2014-03-18 11:27:42 +00:00
|
|
|
depends_on 'go' => :build
|
2014-10-22 07:18:36 +00:00
|
|
|
depends_on 'openssl'
|
2012-05-12 19:10:37 +00:00
|
|
|
|
2014-07-12 18:47:14 +00:00
|
|
|
needs :cxx11
|
|
|
|
|
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
|
|
|
|
|
|
|
|
# Bundled V8 tries to build with a 10.5 deployment target,
|
|
|
|
# which causes clang to error out b/c a 10.5 deployment target
|
|
|
|
# and -stdlib=libc++ are not valid together.
|
|
|
|
inreplace "3rdParty/V8/build/standalone.gypi",
|
|
|
|
"'mac_deployment_target%': '10.5',",
|
|
|
|
"'mac_deployment_target%': '#{MacOS.version}',"
|
|
|
|
|
2013-04-14 09:57:04 +00:00
|
|
|
args = %W[
|
|
|
|
--disable-dependency-tracking
|
|
|
|
--prefix=#{prefix}
|
|
|
|
--disable-relative
|
2014-03-18 11:27:42 +00:00
|
|
|
--enable-all-in-one-icu
|
|
|
|
--enable-all-in-one-libev
|
2013-08-30 16:57:40 +00:00
|
|
|
--enable-all-in-one-v8
|
2013-04-14 09:57:04 +00:00
|
|
|
--enable-mruby
|
|
|
|
--datadir=#{share}
|
|
|
|
--localstatedir=#{var}
|
|
|
|
]
|
|
|
|
|
2014-10-21 07:05:33 +00:00
|
|
|
args << "--program-suffix=unstable" if build.head?
|
|
|
|
|
2013-04-14 09:57:04 +00:00
|
|
|
system "./configure", *args
|
2012-05-12 19:10:37 +00:00
|
|
|
system "make install"
|
|
|
|
|
2013-08-28 14:15:12 +00:00
|
|
|
(var/'arangodb').mkpath
|
|
|
|
(var/'log/arangodb').mkpath
|
2012-05-12 19:10:37 +00:00
|
|
|
end
|
|
|
|
|
2014-06-07 07:14:11 +00:00
|
|
|
def post_install
|
|
|
|
system "#{sbin}/arangod", "--upgrade", "--log.file", "-"
|
|
|
|
end
|
|
|
|
|
2014-04-07 12:50:13 +00:00
|
|
|
plist_options :manual => "#{HOMEBREW_PREFIX}/opt/arangodb/sbin/arangod --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
|