mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 08:58:59 +08:00
[numcpp] Add new port (#12682)
This commit is contained in:
parent
970fdf4e88
commit
a51f392b52
24
ports/numcpp/portfile.cmake
Normal file
24
ports/numcpp/portfile.cmake
Normal file
@ -0,0 +1,24 @@
|
||||
# header-only library
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO dpilger26/NumCpp
|
||||
REF fc68d897f8c2ae4f5b14baff3eefda897351abbd # 2.1.0
|
||||
SHA512 ce407d9782d304658853cd66ba5901a4dc84d8cf74d45b2dd466ca6328f6bf60b39906efd5373624df6b46c4253f861208b15254d0e156fdb09f32ca731ad2bc
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
PREFER_NINJA
|
||||
OPTIONS
|
||||
-DNUMCPP_TEST=OFF
|
||||
-DNUMCPP_EXAMPLES=OFF
|
||||
)
|
||||
|
||||
vcpkg_install_cmake()
|
||||
|
||||
vcpkg_fixup_cmake_targets(CONFIG_PATH share/NumCpp/cmake TARGET_PATH share/NumCpp)
|
||||
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug)
|
||||
|
||||
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|
26
ports/numcpp/vcpkg.json
Normal file
26
ports/numcpp/vcpkg.json
Normal file
@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "numcpp",
|
||||
"version-string": "2.1.0",
|
||||
"description": "C++ implementation of the Python Numpy library",
|
||||
"homepage": "https://dpilger26.github.io/NumCpp",
|
||||
"license": "MIT",
|
||||
"dependencies": [
|
||||
"boost-algorithm",
|
||||
"boost-endian",
|
||||
"boost-integer",
|
||||
"boost-math",
|
||||
"boost-predef",
|
||||
"boost-random",
|
||||
"boost-type-traits"
|
||||
],
|
||||
"features": [
|
||||
{
|
||||
"name": "python",
|
||||
"description": "Interacting with python with pybind11 interface",
|
||||
"dependencies": [
|
||||
"boost-python",
|
||||
"pybind11"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user