homebrew-core/Formula/mongo-c.rb
2015-01-31 08:47:34 -08:00

24 lines
760 B
Ruby

require "formula"
class MongoC < Formula
homepage "http://docs.mongodb.org/ecosystem/drivers/c/"
url "https://github.com/mongodb/mongo-c-driver/releases/download/1.1.0/mongo-c-driver-1.1.0.tar.gz"
sha1 "9277fb0afcf595838da0d5e4715df1526d53e020"
bottle do
cellar :any
sha1 "a1902585054a645fece9ef6e91a53258f3df0356" => :yosemite
sha1 "53858df7d3bb85e63d070754e2aa8f0e9576266f" => :mavericks
sha1 "b547c663729e6ec4944462c8d305643dd83d452f" => :mountain_lion
end
depends_on "pkg-config" => :build
depends_on "libbson"
depends_on "openssl"
def install
# --enable-sasl=no: https://jira.mongodb.org/browse/CDRIVER-447
system "./configure", "--prefix=#{prefix}", "--enable-sasl=no"
system "make", "install"
end
end