90 lines
2.5 KiB
Ruby
90 lines
2.5 KiB
Ruby
class Arangodb < Formula
|
|
desc "The Multi-Model NoSQL Database"
|
|
homepage "https://www.arangodb.com/"
|
|
url "https://download.arangodb.com/Source/ArangoDB-3.4.3.tar.gz"
|
|
sha256 "5a203e473f4d9802ea2e9a8a5972bce9c05ef1b77bc4d79d889a7278a7d5aa28"
|
|
head "https://github.com/arangodb/arangodb.git", :branch => "unstable"
|
|
|
|
bottle do
|
|
sha256 "b518341b333cc6c81b7c6764fe27d29dd844267bdc82a60df299feb1c6e4508d" => :mojave
|
|
sha256 "ffd87e6650e80661ed36aa0b92507ef9dc3e1521b592adbd9e67a8b05777a0e5" => :high_sierra
|
|
sha256 "55d99d170d153b60afb0e5ff76eccf85d74917e4334c25676092238b5bce8a28" => :sierra
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "go" => :build
|
|
depends_on :macos => :yosemite
|
|
depends_on "openssl"
|
|
|
|
fails_with :gcc do
|
|
build 820
|
|
cause "Generates incorrect code"
|
|
end
|
|
|
|
def install
|
|
ENV.cxx11
|
|
|
|
mkdir "build" do
|
|
args = std_cmake_args + %W[
|
|
-DHOMEBREW=ON
|
|
-DUSE_OPTIMIZE_FOR_ARCHITECTURE=OFF
|
|
-DASM_OPTIMIZATIONS=OFF
|
|
-DCMAKE_INSTALL_DATADIR=#{share}
|
|
-DCMAKE_INSTALL_DATAROOTDIR=#{share}
|
|
-DCMAKE_INSTALL_SYSCONFDIR=#{etc}
|
|
-DCMAKE_INSTALL_LOCALSTATEDIR=#{var}
|
|
]
|
|
|
|
if ENV.compiler == "gcc-6"
|
|
ENV.append "V8_CXXFLAGS", "-O3 -g -fno-delete-null-pointer-checks"
|
|
end
|
|
|
|
system "cmake", "..", *args
|
|
system "make", "install"
|
|
|
|
%w[arangod arango-dfdb arangosh foxx-manager].each do |f|
|
|
inreplace etc/"arangodb3/#{f}.conf", pkgshare, opt_pkgshare
|
|
end
|
|
end
|
|
end
|
|
|
|
def post_install
|
|
(var/"lib/arangodb3").mkpath
|
|
(var/"log/arangodb3").mkpath
|
|
end
|
|
|
|
def caveats
|
|
s = <<~EOS
|
|
An empty password has been set. Please change it by executing
|
|
#{opt_sbin}/arango-secure-installation
|
|
EOS
|
|
|
|
s
|
|
end
|
|
|
|
plist_options :manual => "#{HOMEBREW_PREFIX}/opt/arangodb/sbin/arangod"
|
|
|
|
def plist; <<~EOS
|
|
<?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>Program</key>
|
|
<string>#{opt_sbin}/arangod</string>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
testcase = "require('@arangodb').print('it works!')"
|
|
output = shell_output("#{bin}/arangosh --server.password \"\" --javascript.execute-string \"#{testcase}\"")
|
|
assert_equal "it works!", output.chomp
|
|
end
|
|
end
|