2014-05-16 16:36:58 +00:00
|
|
|
require "formula"
|
2011-07-26 14:21:02 +00:00
|
|
|
|
|
|
|
class Neo4j < Formula
|
2014-05-16 16:36:58 +00:00
|
|
|
homepage "http://neo4j.org"
|
2014-06-01 12:54:31 +00:00
|
|
|
url "http://dist.neo4j.org/neo4j-community-2.1.2-unix.tar.gz"
|
|
|
|
sha1 "7a0b703e0722d35ffa501dbe0485fa15d2e805ff"
|
|
|
|
version "2.1.2"
|
2011-07-26 14:21:02 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
# Remove windows files
|
|
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
|
|
|
|
# Install jars in libexec to avoid conflicts
|
2014-05-16 16:36:58 +00:00
|
|
|
libexec.install Dir["*"]
|
2011-07-26 14:21:02 +00:00
|
|
|
|
|
|
|
# Symlink binaries
|
2012-02-13 01:27:25 +00:00
|
|
|
bin.install_symlink Dir["#{libexec}/bin/neo4j{,-shell}"]
|
2012-10-17 14:29:39 +00:00
|
|
|
|
|
|
|
# Adjust UDC props
|
2014-05-16 16:36:58 +00:00
|
|
|
open("#{libexec}/conf/neo4j-wrapper.conf", "a") { |f|
|
2012-10-17 14:29:39 +00:00
|
|
|
f.puts "wrapper.java.additional.4=-Dneo4j.ext.udc.source=homebrew"
|
2013-11-08 09:19:50 +00:00
|
|
|
|
|
|
|
# suppress the empty, focus-stealing java gui
|
|
|
|
f.puts "wrapper.java.additional=-Djava.awt.headless=true"
|
2012-10-17 14:29:39 +00:00
|
|
|
}
|
2011-07-26 14:21:02 +00:00
|
|
|
end
|
|
|
|
end
|