2013-08-23 18:40:56 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class MongoC < Formula
|
|
|
|
homepage 'http://docs.mongodb.org/ecosystem/drivers/c/'
|
2013-10-18 23:54:44 +00:00
|
|
|
url 'https://github.com/mongodb/mongo-c-driver/archive/v0.8.1.zip'
|
|
|
|
sha1 '38ae6a6273bbf11e24f696a65a3ea3901e456126'
|
2013-08-23 18:40:56 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "make"
|
|
|
|
system "make", "install", "DESTDIR=", "PREFIX=#{prefix}"
|
|
|
|
end
|
|
|
|
end
|