2012-05-12 19:10:37 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Arangodb < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Universal open-source database with a flexible data model"
|
2015-03-11 13:20:53 +00:00
|
|
|
homepage 'https://www.arangodb.com/'
|
2015-06-21 18:11:31 +00:00
|
|
|
url 'https://www.arangodb.com/repositories/Source/ArangoDB-2.6.0.tar.gz'
|
|
|
|
sha256 'fec63994692cfb851369e3d074ae0a0e240ef2b362990deca6babc5fd7929b0d'
|
2012-05-12 19:10:37 +00:00
|
|
|
|
2015-01-31 01:12:29 +00:00
|
|
|
head "https://github.com/arangodb/arangodb.git", :branch => 'unstable'
|
2012-05-12 19:10:37 +00:00
|
|
|
|
2014-04-07 12:08:07 +00:00
|
|
|
bottle do
|
2015-06-23 03:38:25 +00:00
|
|
|
sha256 "022442171a83fc3605783249ca1d6f8458818e4327ff36ea4f3b62b80ee119c8" => :yosemite
|
|
|
|
sha256 "e2e79447c2616b005f099fd7b4d7b8725fcad8e4d7f567ec7d3d8e9c1b131cca" => :mavericks
|
|
|
|
sha256 "ee824f0b85f11ca6e5e887d019dc51ff4291255d6b50e661e18e9e7876df8663" => :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
|
|
|
|
|
2013-04-14 09:57:04 +00:00
|
|
|
args = %W[
|
|
|
|
--disable-dependency-tracking
|
|
|
|
--prefix=#{prefix}
|
|
|
|
--disable-relative
|
|
|
|
--enable-mruby
|
|
|
|
--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
|
|
|
|
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
|
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
|
|
|
|
|
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
|