libcds 2.2.0 (new formula)

Closes #10943.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
This commit is contained in:
Anders Åslund 2017-03-12 10:36:41 +01:00 committed by FX Coudert
parent 182c67be1b
commit e860e0bf76

32
Formula/libcds.rb Normal file
View file

@ -0,0 +1,32 @@
class Libcds < Formula
desc "C++ library of Concurrent Data Structures"
homepage "https://libcds.sourceforge.io/doc/cds-api/index.html"
url "https://github.com/khizmax/libcds/archive/v2.2.0.tar.gz"
sha256 "e582fbd6492c91ff24b11468f094b111d5f62eca69e6445c88bf16cad50e40ed"
depends_on "cmake" => :build
depends_on "boost"
if DevelopmentTools.clang_build_version < 800
depends_on "gcc"
fails_with :clang
end
def install
system "cmake", ".", *std_cmake_args
system "make", "install"
end
test do
(testpath/"test.cpp").write <<-EOS.undent
#include <cds/init.h>
int main() {
cds::Initialize();
cds::threading::Manager::attachThread();
cds::Terminate();
return 0;
}
EOS
system ENV.cxx, "-o", "test", "test.cpp", "-L#{lib}64", "-lcds", "-std=c++11"
system "./test"
end
end