65b3b5a241
Closes Homebrew/homebrew#36788. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
50 lines
1.5 KiB
Ruby
50 lines
1.5 KiB
Ruby
require "formula"
|
|
|
|
class Neo4j < Formula
|
|
homepage "http://neo4j.org"
|
|
url "http://dist.neo4j.org/neo4j-community-2.1.7-unix.tar.gz"
|
|
sha1 "1827c318c019042c3ca2da89481f717f711d9aed"
|
|
version "2.1.7"
|
|
|
|
option "with-neo4j-shell-tools", "Add neo4j-shell-tools to the standard neo4j-shell"
|
|
|
|
resource "neo4j-shell-tools" do
|
|
url "http://dist.neo4j.org/jexp/shell/neo4j-shell-tools_2.1.zip"
|
|
sha1 "83011a6dcf1cb49ee609e973fdb61f32f765b224"
|
|
end
|
|
|
|
devel do
|
|
url "http://dist.neo4j.org/neo4j-community-2.2.0-M04-unix.tar.gz"
|
|
sha1 "05e4d532b08a4b02de0b601bbb95c3298a715525"
|
|
version "2.2.0-M04"
|
|
end
|
|
|
|
def install
|
|
# Remove windows files
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
# Install jars in libexec to avoid conflicts
|
|
libexec.install Dir["*"]
|
|
|
|
# Symlink binaries
|
|
bin.install_symlink Dir["#{libexec}/bin/neo4j{,-shell}"]
|
|
|
|
bin.install_symlink libexec/"bin/neo4j-import" if build.devel?
|
|
|
|
# Eventually, install neo4j-shell-tools
|
|
# omiting "opencsv-2.3.jar" because it already comes with neo4j (see libexec/lib)
|
|
if build.with? "neo4j-shell-tools"
|
|
resource("neo4j-shell-tools").stage {
|
|
(libexec/"lib").install "geoff-0.5.0.jar", "import-tools-2.1-SNAPSHOT.jar", "mapdb-0.9.3.jar"
|
|
}
|
|
end
|
|
|
|
# Adjust UDC props
|
|
open("#{libexec}/conf/neo4j-wrapper.conf", "a") { |f|
|
|
f.puts "wrapper.java.additional.4=-Dneo4j.ext.udc.source=homebrew"
|
|
|
|
# suppress the empty, focus-stealing java gui
|
|
f.puts "wrapper.java.additional=-Djava.awt.headless=true"
|
|
}
|
|
end
|
|
end
|