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.8-unix.tar.gz"
sha256 "34c8ce7edc2ab9f63a204f74f37621cac3427f12b0aef4c6ef47eaf4c2b90d66"
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: "9783f1a2efd47678571c95eb0f8ef094cdfd5f9e4c01ba215408e0e4bb6e815c"
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