From a8502ca793ab1a81d3ef0f700b1b201ee716a3ba Mon Sep 17 00:00:00 2001 From: AMIR <31338382+amiremohamadi@users.noreply.github.com> Date: Fri, 8 Mar 2019 00:58:49 +0330 Subject: [PATCH] [libbf] Add new port (#5570) * [libff] Add new port * Add new port [libbf] * Update portfile.cmake * update libbf portfile * [libbf] Fail with meaningful message on Windows * [libbf] Fix MSVC check condition --- ports/libbf/CONTROL | 3 +++ ports/libbf/portfile.cmake | 27 +++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 ports/libbf/CONTROL create mode 100644 ports/libbf/portfile.cmake diff --git a/ports/libbf/CONTROL b/ports/libbf/CONTROL new file mode 100644 index 0000000000..3b51a52e1e --- /dev/null +++ b/ports/libbf/CONTROL @@ -0,0 +1,3 @@ +Source: libbf +Version: 1.0.0 +Description: Bloom filters for C++11. \ No newline at end of file diff --git a/ports/libbf/portfile.cmake b/ports/libbf/portfile.cmake new file mode 100644 index 0000000000..b339e94cca --- /dev/null +++ b/ports/libbf/portfile.cmake @@ -0,0 +1,27 @@ +if (VCPKG_CMAKE_SYSTEM_NAME STREQUAL "" OR VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore") + message(FATAL_ERROR "libbf does not support MSVC") +endif() + +include(vcpkg_common_functions) + +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO mavam/libbf + REF v1.0.0 + SHA512 04db7adbeb4bc6b20aed7f2676840499ed1afe499b4cab67f27d4a0ad234c1fb06eced24259f37870ec4760fe74d6d6307b5d11b3cd928b975661eb2966d4db8 + HEAD_REF master +) + +vcpkg_configure_cmake( + SOURCE_PATH ${SOURCE_PATH} + PREFER_NINJA +) + +vcpkg_install_cmake() +vcpkg_copy_pdbs() + + +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) + +file(COPY ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/libbf) +file(RENAME ${CURRENT_PACKAGES_DIR}/share/libbf/COPYING ${CURRENT_PACKAGES_DIR}/share/libbf/copyright) \ No newline at end of file