homebrew-core/Formula/cpp-netlib.rb
Teddy Reed e109130254 cpp-netlib 0.12.0-rc1 (devel)
cpp-netlib 0.12.0-rc1

Closes Homebrew/homebrew#49868.

Signed-off-by: Andrew Janke <andrew@apjanke.net>
2016-03-10 13:35:09 +08:00

75 lines
2.2 KiB
Ruby

class CppNetlib < Formula
desc "C++ libraries for high level network programming"
homepage "http://cpp-netlib.org"
url "http://downloads.cpp-netlib.org/0.11.2/cpp-netlib-0.11.2-final.tar.gz"
version "0.11.2"
sha256 "71953379c5a6fab618cbda9ac6639d87b35cab0600a4450a7392bc08c930f2b1"
devel do
url "https://github.com/cpp-netlib/cpp-netlib/archive/cpp-netlib-0.12.0-rc1.tar.gz"
version "0.12.0-rc1"
sha256 "f692253c57219b52397a886af769afe207e9cf2eda8ad22ed0e9e48bb483fc03"
# Version 0.12.0+ moves from boost::asio to asio.
depends_on "asio"
end
bottle do
cellar :any_skip_relocation
sha256 "5669a528afe56b310179af07d0191b96491f90a2365b5b9e7f1d26daa011b463" => :el_capitan
sha256 "2ddb407f33dd6a8c8ec1e3a8afd67a3afb1666f843794e72632f203fb5b42ecb" => :yosemite
sha256 "0913efd07660f359ee7d043f06a25ccb9fc3010f42b15f4dbd43b558f2161bb1" => :mavericks
sha256 "093cc615abf08eeb6d698d85e9d4bb8003e536548f925246d86baa7f1ec45506" => :mountain_lion
end
depends_on "cmake" => :build
depends_on "openssl"
if MacOS.version < :mavericks
depends_on "boost" => "c++11"
else
depends_on "boost"
end
needs :cxx11
def install
ENV.cxx11
# NB: Do not build examples or tests as they require submodules.
system "cmake", "-DCPP-NETLIB_BUILD_TESTS=OFF", "-DCPP-NETLIB_BUILD_EXAMPLES=OFF", *std_cmake_args
system "make"
system "make", "install"
end
test do
(testpath/"test.cpp").write <<-EOS.undent
#include <boost/network/protocol/http/client.hpp>
int main(int argc, char *argv[]) {
namespace http = boost::network::http;
http::client::options options;
http::client client(options);
http::client::request request("");
return 0;
}
EOS
flags = [
"-std=c++11",
"-stdlib=libc++",
"-I#{include}",
"-I#{Formula["asio"].include}",
"-I#{Formula["boost"].include}",
"-L#{lib}",
"-L#{Formula["boost"].lib}",
"-lssl",
"-lcrypto",
"-lboost_thread-mt",
"-lboost_system-mt",
"-lcppnetlib-uri",
"-lcppnetlib-client-connections",
"-lcppnetlib-server-parsers",
] + ENV.cflags.split
system ENV.cxx, "-o", "test", "test.cpp", *flags
system "./test"
end
end