aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorClinton R. Nixon2009-09-05 18:14:47 -0400
committerMax Howell2009-09-14 20:33:46 +0100
commitd8a1d59933915aef42a1d7d72251bba23a8d8502 (patch)
tree349c84c5c5927e2d7dfa068c223e2fd9383424e0 /Library/Formula
parent10388602655394c1c0e083b5067f5dc8449055b0 (diff)
downloadhomebrew-d8a1d59933915aef42a1d7d72251bba23a8d8502.tar.bz2
MongoDB formula
Mongo (from "humongous") is a high-performance, open source, schema-free document-oriented database.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mongodb.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/Library/Formula/mongodb.rb b/Library/Formula/mongodb.rb
new file mode 100644
index 000000000..369f04f7c
--- /dev/null
+++ b/Library/Formula/mongodb.rb
@@ -0,0 +1,11 @@
+require 'brewkit'
+
+class Mongodb <Formula
+ @url='http://downloads.mongodb.org/osx/mongodb-osx-x86_64-1.0.0.tgz'
+ @homepage='http://www.mongodb.org/'
+ @md5='21a7071f9bbc922c028b11a9b2b6963c'
+
+ def install
+ system "cp -prv * #{prefix}"
+ end
+end