homebrew-core/Formula/arangodb.rb
Frank Celler 0099e737ae arangodb 2.4.0
Closes Homebrew/homebrew#35896.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-01-15 13:23:46 +00:00

75 lines
2 KiB
Ruby

require 'formula'
class Arangodb < Formula
homepage 'http://www.arangodb.org/'
url 'https://www.arangodb.com/repositories/Source/ArangoDB-2.4.0.tar.gz'
sha1 '1c2096f68d6e0ccb6a24226b79e9d2f29af22fa6'
head "https://github.com/triAGENS/ArangoDB.git", :branch => 'unstable'
bottle do
sha1 "60d6b4a42c30f8714942c46b0a6ed8f11ebd5391" => :yosemite
sha1 "adeaa145e9c5a7eb1991731f1120f1709b4fe425" => :mavericks
sha1 "891f8e977e7a5afd17db85c9667ab975d3ec2769" => :mountain_lion
end
depends_on 'go' => :build
depends_on 'openssl'
needs :cxx11
def install
# 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
args = %W[
--disable-dependency-tracking
--prefix=#{prefix}
--disable-relative
--enable-all-in-one-icu
--enable-all-in-one-libev
--enable-all-in-one-v8
--enable-mruby
--datadir=#{share}
--localstatedir=#{var}
]
args << "--program-suffix=unstable" if build.head?
system "./configure", *args
system "make install"
(var/'arangodb').mkpath
(var/'log/arangodb').mkpath
end
def post_install
system "#{sbin}/arangod", "--upgrade", "--log.file", "-"
end
plist_options :manual => "#{HOMEBREW_PREFIX}/opt/arangodb/sbin/arangod --log.file -"
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>
<string>#{opt_sbin}/arangod</string>
<string>-c</string>
<string>#{etc}/arangodb/arangod.conf</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
EOS
end
end