blob: 3feadc80cf2ae19ee70199350b811d4e6faadb3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class MongoC < Formula
homepage 'http://docs.mongodb.org/ecosystem/drivers/c/'
url 'https://github.com/mongodb/mongo-c-driver/archive/v0.8.1.zip'
sha1 '38ae6a6273bbf11e24f696a65a3ea3901e456126'
def install
system "make"
system "make", "install", "DESTDIR=", "PREFIX=#{prefix}"
end
end
|