class Wdc < Formula desc "WebDAV Client provides easy and convenient to work with WebDAV-servers" homepage "https://designerror.github.io/webdav-client-cpp" url "https://github.com/designerror/webdav-client-cpp/archive/v1.0.1.tar.gz" sha256 "64b01de188032cb9e09f5060965bd90ed264e7c0b4ceb62bfc036d0caec9fd82" revision 1 bottle do cellar :any_skip_relocation sha256 "3804156e08adb5324381b27996e8ac554bf1957022edfe37e9359ead544a844e" => :catalina sha256 "c408a18dc4bbdff2b4ea80b87d0bd77581366b124af7a90f40dce51375d306b8" => :mojave sha256 "8e649ce0a0e12c82915a34def7b42ccd324be3cea3caa04a574314548adad57a" => :high_sierra sha256 "24a16f149bde7a68f0d9b210546f947bff19dc4fa7c201a063243cb810977cee" => :sierra end depends_on "cmake" => :build depends_on "openssl@1.1" depends_on "pugixml" def install pugixml = Formula["pugixml"] ENV.prepend "CXXFLAGS", "-I#{pugixml.opt_include.children.first}" system "cmake", ".", "-DPUGIXML_INCLUDE_DIR=#{pugixml.opt_include}", "-DPUGIXML_LIBRARY=#{pugixml.opt_lib}", *std_cmake_args system "make", "install" end test do (testpath/"test.cpp").write <<~EOS #include #include #include #include #include int main(int argc, char *argv[]) { std::map options = { {"webdav_hostname", "https://webdav.example.com"}, {"webdav_login", "webdav_login"}, {"webdav_password", "webdav_password"} }; std::shared_ptr client(WebDAV::Client::Init(options)); auto check_connection = client->check(); assert(!check_connection); } EOS pugixml = Formula["pugixml"] openssl = Formula["openssl@1.1"] system ENV.cc, "test.cpp", "-o", "test", "-lcurl", "-lstdc++", "-std=c++11", "-L#{lib}", "-lwdc", "-I#{include}", "-L#{openssl.opt_lib}", "-lssl", "-lcrypto", "-I#{openssl.opt_include}", "-L#{Dir["#{pugixml.opt_lib}/pug*"].first}", "-lpugixml", "-I#{pugixml.opt_include.children.first}" system "./test" end end