diff options
| author | Peter Neubauer | 2011-07-26 07:21:02 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-08-24 11:54:45 -0700 |
| commit | e241c1d5ba3dd6ded7a822a8b2d7f8d617cb66ae (patch) | |
| tree | 53b3a330f03b8c65d28748903879b6b4763a099f /Library/Formula | |
| parent | df90c3b298505d12b93ad74c33628e3317be822b (diff) | |
| download | homebrew-e241c1d5ba3dd6ded7a822a8b2d7f8d617cb66ae.tar.bz2 | |
Neo4j 1.4
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/neo4j.rb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Library/Formula/neo4j.rb b/Library/Formula/neo4j.rb new file mode 100644 index 000000000..3bc6e4146 --- /dev/null +++ b/Library/Formula/neo4j.rb @@ -0,0 +1,24 @@ +require 'formula' + +class Neo4j < Formula + head 'http://dist.neo4j.org/neo4j-community-1.5-SNAPSHOT-unix.tar.gz' + url 'http://dist.neo4j.org/neo4j-community-1.4-unix.tar.gz' + version 'community-1.4' + homepage 'http://neo4j.org' + md5 'a176c80283c3f4d3d71ee2f5c8bfa550' + + 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" + end +end |
