mirror of
https://github.com/cemu-project/vcpkg.git
synced 2024-11-23 19:29:49 +00:00
[morton-nd] Add port (#4420)
* [morton-nd] Add port * [morton-md] Remove 'v' from CONTROL version
This commit is contained in:
parent
6ca2efc631
commit
59f88c7b10
3
ports/morton-nd/CONTROL
Normal file
3
ports/morton-nd/CONTROL
Normal file
@ -0,0 +1,3 @@
|
||||
Source: morton-nd
|
||||
Version: 2.0.0
|
||||
Description: (C++14) header-only library for fast Morton encoding/decoding in N dimensions.
|
16
ports/morton-nd/portfile.cmake
Normal file
16
ports/morton-nd/portfile.cmake
Normal file
@ -0,0 +1,16 @@
|
||||
#header-only library
|
||||
include(vcpkg_common_functions)
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO kevinhartman/morton-nd
|
||||
REF v2.0.0
|
||||
SHA512 f349187a9c6094ebdc8dc10a0b028e119a82721946e2f629b3f64edade9665a97824d6a52496e470da61e5b65ae46c953346b271c2db11f5f2e3c7748de03daf
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/morton-nd)
|
||||
file(COPY ${SOURCE_PATH}/NOTICE DESTINATION ${CURRENT_PACKAGES_DIR}/share/morton-nd)
|
||||
file(RENAME ${CURRENT_PACKAGES_DIR}/share/morton-nd/LICENSE ${CURRENT_PACKAGES_DIR}/share/morton-nd/copyright)
|
||||
|
||||
file(GLOB HEADER_FILES ${SOURCE_PATH}/morton-nd/include/*.h)
|
||||
file(COPY ${HEADER_FILES} DESTINATION ${CURRENT_PACKAGES_DIR}/include/morton-nd)
|
Loading…
Reference in New Issue
Block a user