diff options
| author | mindrones | 2015-03-25 08:40:35 +0100 | 
|---|---|---|
| committer | Mike McQuaid | 2015-03-25 09:16:30 +0000 | 
| commit | b0e8d3e7d6f59eb738523e7fc14830bee2fa1fd3 (patch) | |
| tree | d42dceb34a2087a413dc3aa720a7d458b273588d | |
| parent | 104207a43862c57a949e16f4f721e549d691958f (diff) | |
| download | homebrew-b0e8d3e7d6f59eb738523e7fc14830bee2fa1fd3.tar.bz2 | |
neo4j 2.2.0
Closes #38048.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
| -rw-r--r-- | Library/Formula/neo4j.rb | 16 | 
1 files changed, 4 insertions, 12 deletions
| diff --git a/Library/Formula/neo4j.rb b/Library/Formula/neo4j.rb index dd66c60cc..68b3b4e49 100644 --- a/Library/Formula/neo4j.rb +++ b/Library/Formula/neo4j.rb @@ -2,9 +2,9 @@ require "formula"  class Neo4j < Formula    homepage "http://neo4j.org" -  url "http://dist.neo4j.org/neo4j-community-2.1.7-unix.tar.gz" -  sha1 "1827c318c019042c3ca2da89481f717f711d9aed" -  version "2.1.7" +  url "http://dist.neo4j.org/neo4j-community-2.2.0-unix.tar.gz" +  sha1 "af6d05bfd1bf2ca9644bde2571d1b37a6fd972ab" +  version "2.2.0"    option "with-neo4j-shell-tools", "Add neo4j-shell-tools to the standard neo4j-shell" @@ -13,12 +13,6 @@ class Neo4j < Formula      sha1 "83011a6dcf1cb49ee609e973fdb61f32f765b224"    end -  devel do -    url "http://dist.neo4j.org/neo4j-community-2.2.0-RC01-unix.tar.gz" -    sha1 "65165b83ee2ba91e9ba99cb2acce9ebcf7ad5434" -    version "2.2.0-RC01" -  end -    def install      # Remove windows files      rm_f Dir["bin/*.bat"] @@ -27,9 +21,7 @@ class Neo4j < Formula      libexec.install Dir["*"]      # Symlink binaries -    bin.install_symlink Dir["#{libexec}/bin/neo4j{,-shell}"] - -    bin.install_symlink libexec/"bin/neo4j-import" if build.devel? +    bin.install_symlink Dir["#{libexec}/bin/neo4j{,-shell,-import}"]      # Eventually, install neo4j-shell-tools      # omiting "opencsv-2.3.jar" because it already comes with neo4j (see libexec/lib) | 
