66 lines
2.0 KiB
Ruby
66 lines
2.0 KiB
Ruby
class Neo4j < Formula
|
|
desc "Robust (fully ACID) transactional property graph database"
|
|
homepage "https://neo4j.com/"
|
|
url "https://neo4j.com/artifact.php?name=neo4j-community-5.3.0-unix.tar.gz"
|
|
sha256 "b20a3f253c42faccd1d2c37f9cc8bf6d557f0e645dced39e163da5ae12bb8d0a"
|
|
license "GPL-3.0-or-later"
|
|
|
|
livecheck do
|
|
url "https://neo4j.com/download-center/"
|
|
regex(/href=.*?edition=community[^"' >]+release=v?(\d+(?:\.\d+)+)[&"' >]
|
|
|href=.*?release=v?(\d+(?:\.\d+)+)[^"' >]+edition=community/ix)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "c5229246faf8a18d1895374e25219a2c76fb1c51fe13eff0feff571f2e85469c"
|
|
end
|
|
|
|
depends_on "openjdk"
|
|
|
|
def install
|
|
env = {
|
|
JAVA_HOME: Formula["openjdk"].opt_prefix,
|
|
NEO4J_HOME: libexec,
|
|
}
|
|
# Remove windows files
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
# Install jars in libexec to avoid conflicts
|
|
libexec.install Dir["*"]
|
|
|
|
# Symlink binaries
|
|
bin.install Dir["#{libexec}/bin/neo4j{,-shell,-import,-shared.sh,-admin}", "#{libexec}/bin/cypher-shell"]
|
|
bin.env_script_all_files(libexec/"bin", env)
|
|
|
|
# Adjust UDC props
|
|
# Suppress the empty, focus-stealing java gui.
|
|
(libexec/"conf/neo4j.conf").append_lines <<~EOS
|
|
wrapper.java.additional=-Djava.awt.headless=true
|
|
wrapper.java.additional.4=-Dneo4j.ext.udc.source=homebrew
|
|
dbms.directories.data=#{var}/neo4j/data
|
|
dbms.directories.logs=#{var}/log/neo4j
|
|
EOS
|
|
end
|
|
|
|
def post_install
|
|
(var/"log/neo4j").mkpath
|
|
(var/"neo4j").mkpath
|
|
end
|
|
|
|
service do
|
|
run [opt_bin/"neo4j", "console"]
|
|
keep_alive false
|
|
working_dir var
|
|
log_path var/"log/neo4j.log"
|
|
error_log_path var/"log/neo4j.log"
|
|
end
|
|
|
|
test do
|
|
ENV["NEO4J_HOME"] = libexec
|
|
ENV["NEO4J_LOG"] = testpath/"libexec/data/log/neo4j.log"
|
|
ENV["NEO4J_PIDFILE"] = testpath/"libexec/data/neo4j-service.pid"
|
|
mkpath testpath/"libexec/data/log"
|
|
assert_match(/Neo4j .*is not running/i, shell_output("#{bin}/neo4j status 2>&1", 3))
|
|
end
|
|
end
|