Skip to content

Instantly share code, notes, and snippets.

@jtescher
Created June 10, 2013 20:13
Show Gist options
  • Save jtescher/5751864 to your computer and use it in GitHub Desktop.
Save jtescher/5751864 to your computer and use it in GitHub Desktop.
Neo4j Enterprise Homebrew Formula
require 'formula'
class Neo4jEnterprise < Formula
homepage 'http://www.neo4j.org/'
url 'http://dist.neo4j.org/neo4j-enterprise-1.9-unix.tar.gz'
sha1 '66e7da3d5f94b210d78a573fa8f4f8c0897cd2c3'
version 'enterprise-1.9-unix'
devel do
url 'http://dist.neo4j.org/neo4j-enterprise-2.0.0-M02-unix.tar.gz'
sha1 '808064ab2b0c1d941164cdea5ef97dbfe52f06de'
version 'enterprise-2.0.0-M02-unix'
end
def install
# Remove windows files
rm_f Dir["bin/*.bat"]
# Fix the permissions on the global settings file.
chmod 0644, Dir["config"]
# 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"
}
end
def caveats; <<-EOS.undent
Quick-start guide:
1. Start the server manually:
neo4j start
2. Open webadmin:
open http://localhost:7474/webadmin/
3. Start exploring the REST API:
curl -v http://localhost:7474/db/data/
4. Stop:
neo4j stop
To launch on startup, install launchd-agent to ~/Library/LaunchAgents/ with:
neo4j install
If this is an upgrade, see:
#{libexec}/UPGRADE.txt
The manual can be found in:
#{libexec}/doc/
You may need to add JAVA_HOME to your shell profile:
export JAVA_HOME="$(/usr/libexec/java_home)"
EOS
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment