5eea19e40f
This commit adds support for building libmongoclient in C++11 mode. It also changes boost from a build dependency to a normal dependency in both C++98 and C++11 mode. Since the library can't be linked into a program or used without several of the boost libraries, it didn't seem reasonable to only declare boost as a build dependency. Closes Homebrew/homebrew#29003. [jn: style fixes] Signed-off-by: Kevin Locke <kevin@kevinlocke.name> Signed-off-by: Jack Nagel <jacknagel@gmail.com>
44 lines
1 KiB
Ruby
44 lines
1 KiB
Ruby
require 'formula'
|
|
|
|
class Libmongoclient < Formula
|
|
homepage 'http://www.mongodb.org'
|
|
url 'https://github.com/mongodb/mongo-cxx-driver/archive/legacy-0.0-26compat-2.6.1.tar.gz'
|
|
sha1 'a45e66d5182ede6b3a0f5bd5e020ebeb48dbddbe'
|
|
|
|
head 'https://github.com/mongodb/mongo-cxx-driver.git', :branch => "26compat"
|
|
|
|
option :cxx11
|
|
|
|
depends_on 'scons' => :build
|
|
|
|
if build.cxx11?
|
|
depends_on 'boost' => 'c++11'
|
|
else
|
|
depends_on 'boost'
|
|
end
|
|
|
|
def install
|
|
ENV.cxx11 if build.cxx11?
|
|
|
|
boost = Formula["boost"].opt_prefix
|
|
|
|
args = [
|
|
"--prefix=#{prefix}",
|
|
"-j#{ENV.make_jobs}",
|
|
"--cc=#{ENV.cc}",
|
|
"--cxx=#{ENV.cxx}",
|
|
"--extrapath=#{boost}",
|
|
"--full",
|
|
"--use-system-all",
|
|
"--sharedclient",
|
|
# --osx-version-min is required to override --osx-version-min=10.6 added
|
|
# by SConstruct which causes "invalid deployment target for -stdlib=libc++"
|
|
# when using libc++
|
|
"--osx-version-min=#{MacOS.version}",
|
|
]
|
|
|
|
args << "--libc++" if MacOS.version >= :mavericks
|
|
|
|
scons *args
|
|
end
|
|
end
|