mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-22 10:37:10 +01:00
[tinycthread] Add new port (#7565)
This commit is contained in:
parent
99b00d8476
commit
0d5e42ff76
4
ports/tinycthread/CONTROL
Normal file
4
ports/tinycthread/CONTROL
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
Source: tinycthread
|
||||||
|
Version: 2019-08-06
|
||||||
|
Description: Small, portable implementation of the C11 threads API
|
||||||
|
Homepage: https://tinycthread.github.io/
|
29
ports/tinycthread/portfile.cmake
Normal file
29
ports/tinycthread/portfile.cmake
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
include(vcpkg_common_functions)
|
||||||
|
|
||||||
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
||||||
|
|
||||||
|
vcpkg_from_github(
|
||||||
|
OUT_SOURCE_PATH SOURCE_PATH
|
||||||
|
REPO tinycthread/tinycthread
|
||||||
|
REF 6957fc8383d6c7db25b60b8c849b29caab1caaee
|
||||||
|
SHA512 d8b1ad73676f90b236bef06464cfd34996e7b6676ef28cf011cfff86d63e9d6322f7b00ca15290b3f87ed40e704d5325f676440d0223a7f8716d3392a5d1345d
|
||||||
|
HEAD_REF master
|
||||||
|
)
|
||||||
|
|
||||||
|
vcpkg_configure_cmake(
|
||||||
|
SOURCE_PATH ${SOURCE_PATH}
|
||||||
|
PREFER_NINJA
|
||||||
|
OPTIONS
|
||||||
|
-DTINYCTHREAD_DISABLE_TESTS=OFF
|
||||||
|
-DTINYCTHREAD_INSTALL=ON
|
||||||
|
)
|
||||||
|
|
||||||
|
vcpkg_install_cmake()
|
||||||
|
|
||||||
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||||||
|
|
||||||
|
# Handle copyright
|
||||||
|
file(STRINGS ${SOURCE_PATH}/README.txt SOURCE_LINES)
|
||||||
|
list(SUBLIST SOURCE_LINES 70 120 SOURCE_LINES)
|
||||||
|
list(JOIN SOURCE_LINES "\n" _contents)
|
||||||
|
file(WRITE ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright "${_contents}")
|
Loading…
x
Reference in New Issue
Block a user