From ca91526308f95f8488e4826b54984da8418dea65 Mon Sep 17 00:00:00 2001 From: Frank Celler Date: Sat, 12 May 2012 21:10:37 +0200 Subject: avocadodb: renamed to arangodb upstream Signed-off-by: Adam Vandenberg --- Library/Formula/arangodb.rb | 41 +++++++++++++++++++++++++++++++++++++++++ Library/Formula/avocadodb.rb | 40 ---------------------------------------- 2 files changed, 41 insertions(+), 40 deletions(-) create mode 100644 Library/Formula/arangodb.rb delete mode 100644 Library/Formula/avocadodb.rb (limited to 'Library/Formula') diff --git a/Library/Formula/arangodb.rb b/Library/Formula/arangodb.rb new file mode 100644 index 000000000..648d77d1a --- /dev/null +++ b/Library/Formula/arangodb.rb @@ -0,0 +1,41 @@ +require 'formula' + +class Arangodb < Formula + homepage 'http://www.arangodb.org/' + url "https://github.com/triAGENS/ArangoDB/zipball/v0.5.0" + sha1 'a3b49fe19bc15e52b5d2a47ee083cc76cb80bbd8' + + head "https://github.com/triAGENS/ArangoDB.git" + + depends_on 'libev' + depends_on 'v8' + + def install + system "./configure", "--prefix=#{prefix}", + "--disable-relative", + "--disable-all-in-one", + "--enable-mruby", + "--disable-debug", + "--disable-dependency-tracking", + "--datadir=#{share}", + "--localstatedir=#{var}" + + system "make install" + + (var+'arango').mkpath + end + + def caveats; <<-EOS.undent + Please note that this is a very early version if ArangoDB. There will be + bugs and the ArangoDB team would really appreciate it if you report them: + + https://github.com/triAGENS/ArangoDB/issues + + To start the ArangoDB server, run: + /usr/local/sbin/arangod + + To start the ArangoDB shell, run: + arangosh + EOS + end +end diff --git a/Library/Formula/avocadodb.rb b/Library/Formula/avocadodb.rb deleted file mode 100644 index e5e28cee6..000000000 --- a/Library/Formula/avocadodb.rb +++ /dev/null @@ -1,40 +0,0 @@ -require 'formula' - -class Avocadodb < Formula - homepage 'http://www.avocadodb.org/' - url "https://github.com/triAGENS/AvocadoDB/zipball/v0.3.9" - sha1 '95ac8035b709d3c5849dabe2f5cf8475142d9b48' - - head "https://github.com/triAGENS/AvocadoDB.git" - - depends_on 'libev' - depends_on 'v8' - - def install - system "./configure", "--prefix=#{prefix}", - "--disable-relative", - "--disable-all-in-one", - "--disable-debug", - "--disable-dependency-tracking", - "--datadir=#{share}", - "--localstatedir=#{var}" - - system "make install" - - (var+'avocado').mkpath - end - - def caveats; <<-EOS.undent - Please note that this is a very early version if AvocadoDB. There will be - bugs and the AvocadoDB team would really appreciate it if you report them: - - https://github.com/triAGENS/AvocadoDB/issues - - To start the AvocadoDB server, run: - avocado - - To start the AvocadoDB shell, run: - avocsh - EOS - end -end -- cgit v1.2.3