aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorFrank Celler2012-05-12 21:10:37 +0200
committerAdam Vandenberg2012-05-23 06:50:30 -0700
commitca91526308f95f8488e4826b54984da8418dea65 (patch)
tree9bff8725f6ff173df340712baf6d2795a8099719 /Library/Formula
parent1f47cfdb645bcd400bb060178521a0590d836655 (diff)
downloadhomebrew-ca91526308f95f8488e4826b54984da8418dea65.tar.bz2
avocadodb: renamed to arangodb upstream
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/arangodb.rb41
-rw-r--r--Library/Formula/avocadodb.rb40
2 files changed, 41 insertions, 40 deletions
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