homebrew-core/Formula/aws-sdk-cpp.rb
2016-05-09 23:58:46 -07:00

47 lines
1.4 KiB
Ruby

class AwsSdkCpp < Formula
desc "AWS SDK for C++"
homepage "https://github.com/aws/aws-sdk-cpp"
url "https://github.com/aws/aws-sdk-cpp/archive/0.10.10.tar.gz"
sha256 "e64deb0704aab43b65659b7b763bfc8614de909cc6a5d829accfadc42967eb77"
head "https://github.com/aws/aws-sdk-cpp.git"
bottle do
cellar :any
sha256 "012e3db9d569a2ab6cfb62ec2d293cb0d873c0701259a73f101d1fe66eff486b" => :el_capitan
sha256 "2890ee7aef006e32d876b6ab202261960182e915bc198e2e32da4fa763661501" => :yosemite
sha256 "f68add11148f742a01f31ce3b992b8e6f44e8a1d7770b5a041811253a277c3ba" => :mavericks
end
option "with-static", "Build with static linking"
option "without-http-client", "Don't include the libcurl HTTP client"
depends_on "cmake" => :build
def install
args = std_cmake_args
args << "-DSTATIC_LINKING=1" if build.with? "static"
args << "-DNO_HTTP_CLIENT=1" if build.without? "http-client"
mkdir "build" do
system "cmake", "..", *args
system "make"
system "make", "install"
end
lib.install Dir[lib/"mac/Release/*"].select { |f| File.file? f }
end
test do
(testpath/"test.cpp").write <<-EOS.undent
#include <aws/core/Version.h>
#include <iostream>
int main() {
std::cout << Aws::Version::GetVersionString() << std::endl;
return 0;
}
EOS
system ENV.cxx, "test.cpp", "-o", "test", "-laws-cpp-sdk-core"
system "./test"
end
end