avocadodb: renamed to arangodb upstream

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Frank Celler 2012-05-12 21:10:37 +02:00 committed by Adam Vandenberg
parent 8a433e8aeb
commit c2ff61a4b3
2 changed files with 41 additions and 40 deletions

41
Formula/arangodb.rb Normal file
View file

@ -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

View file

@ -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