homebrew-core/Formula/neo4j.rb
Peter Neubauer 3397ee97d6 Neo4j 1.6
Closes Homebrew/homebrew#9771.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-01-25 17:49:13 -06:00

24 lines
584 B
Ruby

require 'formula'
class Neo4j < Formula
url 'http://dist.neo4j.org/neo4j-community-1.6-unix.tar.gz'
version 'community-1.6'
homepage 'http://neo4j.org'
md5 'd9b12bbd269853c2a85ed12595e50409'
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.mkpath
ln_s "#{libexec}/bin/neo4j", bin+"neo4j"
ln_s "#{libexec}/bin/neo4j-shell", bin+"neo4j-shell"
end
end