blob: 63ffef13fb9f356a40568b93f7ae4c047011dac6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  | 
require 'formula'
class MongoC < Formula
  homepage 'http://docs.mongodb.org/ecosystem/drivers/c/'
  url 'https://github.com/mongodb/mongo-c-driver/releases/download/0.96.0/mongo-c-driver-0.96.0.tar.gz'
  sha1 '2719914366fd95e64e90fc672d7eb18b488e85e6'
  bottle do
    cellar :any
    sha1 "2b47b10f5acee744bfbe52edefa43a5026569d72" => :mavericks
    sha1 "e7bcfd6172bf4791636157e4671bcf6cb4a02540" => :mountain_lion
    sha1 "c60ea467d0f9765ae489f6c9687b606b92c6c330" => :lion
  end
  depends_on 'pkg-config' => :build
  depends_on 'libbson'
  def install
    system "./configure", "--prefix=#{prefix}"
    system "make", "install"
  end
end
  |