homebrew-core/Formula/neo4j.rb

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-4.4.9-unix.tar.gz"
sha256 "4ee12a98d2dd819d6f08408429014b65264097a812ba5978c14836d6bbccb4a0"
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: "62f55b540cca8d81449b1a7d6714aae7e52e274121145a128871271c29dba824"
end
depends_on "openjdk@11"
def install
env = {
JAVA_HOME: Formula["openjdk@11"].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", 3))
end
end