56 lines
2.1 KiB
Ruby
56 lines
2.1 KiB
Ruby
class AzureStorageCpp < Formula
|
|
desc "Microsoft Azure Storage Client Library for C++"
|
|
homepage "https://azure.github.io/azure-storage-cpp"
|
|
url "https://github.com/Azure/azure-storage-cpp/archive/v7.5.0.tar.gz"
|
|
sha256 "446a821d115949f6511b7eb01e6a0e4f014b17bfeba0f3dc33a51750a9d5eca5"
|
|
license "Apache-2.0"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "cca19a55ebebdfbc2f38b1a358868b66238d3e0ac748019ad2ec82ec2475170f" => :catalina
|
|
sha256 "7d6e3641f5a0ac840b508f83209f63bc511639112439017bab30afbd3d98611f" => :mojave
|
|
sha256 "0513ca4194954b2e69a741c49068f27c043f3cc88535c288cce9f04048b3477b" => :high_sierra
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "boost"
|
|
depends_on "cpprestsdk"
|
|
depends_on "gettext"
|
|
depends_on "openssl@1.1"
|
|
|
|
def install
|
|
system "cmake", "Microsoft.WindowsAzure.Storage",
|
|
"-DBUILD_SAMPLES=OFF",
|
|
"-DBUILD_TESTS=OFF",
|
|
*std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include <was/common.h>
|
|
#include <was/storage_account.h>
|
|
using namespace azure;
|
|
int main() {
|
|
utility::string_t storage_connection_string(_XPLATSTR("DefaultEndpointsProtocol=https;AccountName=myaccountname;AccountKey=myaccountkey"));
|
|
try {
|
|
azure::storage::cloud_storage_account storage_account = azure::storage::cloud_storage_account::parse(storage_connection_string);
|
|
return 0;
|
|
}
|
|
catch(...){ return 1; }
|
|
}
|
|
EOS
|
|
flags = ["-stdlib=libc++", "-std=c++11", "-I#{include}",
|
|
"-I#{Formula["boost"].include}",
|
|
"-I#{Formula["openssl@1.1"].include}",
|
|
"-I#{Formula["cpprestsdk"].include}",
|
|
"-L#{Formula["boost"].lib}",
|
|
"-L#{Formula["cpprestsdk"].lib}",
|
|
"-L#{Formula["openssl@1.1"].lib}",
|
|
"-L#{lib}",
|
|
"-lcpprest", "-lboost_system-mt", "-lssl", "-lcrypto", "-lazurestorage"] + ENV.cflags.to_s.split
|
|
system ENV.cxx, "-o", "test_azurestoragecpp", "test.cpp", *flags
|
|
system "./test_azurestoragecpp"
|
|
end
|
|
end
|