blob: 873570c3b7c84c7ff4c529451c9777bfa84ba4d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
require "formula"
class Neo4j < Formula
homepage "http://neo4j.org"
url "http://dist.neo4j.org/neo4j-community-2.1.5-unix.tar.gz"
sha1 "727c361e74d6a91e50b1ddc9b4ff6e61f72e39d9"
version "2.1.5"
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}"]
# 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
|