class AwsSdkCpp < Formula desc "AWS SDK for C++" homepage "https://github.com/aws/aws-sdk-cpp" # aws-sdk-cpp should only be updated every 10 releases on multiples of 10 url "https://github.com/aws/aws-sdk-cpp/archive/1.4.70.tar.gz" sha256 "acac341440e31e3746c1b956cd49cb71a25aed3111a5c4f35aba403ded6bbed0" head "https://github.com/aws/aws-sdk-cpp.git" bottle do cellar :any sha256 "901bb53fea954c5c7f8a7b46e7b2993073789cf40e953b0e3d0d1aca26e10d39" => :high_sierra sha256 "db0f1db270f3d0a252905d991b343d22b1e319cdcf87605e2c365709577fdb07" => :sierra sha256 "38b49b79ea5c43ee60844d2a9211601d2d115c96245ae5ff4ea9718c0ae39c72" => :el_capitan 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 #include #include int main() { std::cout << Aws::Version::GetVersionString() << std::endl; return 0; } EOS system ENV.cxx, "-std=c++11", "test.cpp", "-L#{lib}", "-laws-cpp-sdk-core", "-o", "test" system "./test" end end