Created
October 21, 2014 09:30
-
-
Save L42y/73fa83f050f01ff32255 to your computer and use it in GitHub Desktop.
Neo4j formula include enterprise version
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |
option "enterprise", "Install enterprise version" | |
if build.include? "enterprise" | |
url "http://dist.neo4j.org/neo4j-enterprise-2.1.5-unix.tar.gz" | |
sha1 "639e62682d9818a8be9f1d39666c2dc474d5f028" | |
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}"] | |
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment