mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-27 18:31:15 +08:00
Reproc initial port (#4263)
* reproc initial port * Remove portfile debug output * Fix Cmake files path * [reproc] Update to v1.0.0 * [reproc] Fix hash for v1.0.0
This commit is contained in:
parent
0720fd2463
commit
2db456f44a
3
ports/reproc/CONTROL
Normal file
3
ports/reproc/CONTROL
Normal file
@ -0,0 +1,3 @@
|
||||
Source: reproc
|
||||
Version: v1.0.0
|
||||
Description: Cross-platform library that simplifies working with external CLI applications from C and C++
|
29
ports/reproc/portfile.cmake
Normal file
29
ports/reproc/portfile.cmake
Normal file
@ -0,0 +1,29 @@
|
||||
include(vcpkg_common_functions)
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO DaanDeMeyer/reproc
|
||||
REF v1.0.0
|
||||
SHA512 f567de9d6cd8bca0b34f1f48231a59c6698730c5b63f1d733de14fecf09991de74e4b3a99cc98ae7f62dcba8b2b7831d5e617fd32ca38b296b9073bc07fb2d92
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
PREFER_NINJA
|
||||
OPTIONS
|
||||
-DREPROC_BUILD_CXX_WRAPPER=ON
|
||||
-DREPROC_INSTALL=ON
|
||||
)
|
||||
|
||||
vcpkg_install_cmake()
|
||||
|
||||
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/reproc)
|
||||
|
||||
|
||||
# Debug
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||||
|
||||
# Handle License
|
||||
file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/reproc)
|
||||
file(RENAME ${CURRENT_PACKAGES_DIR}/share/reproc/LICENSE ${CURRENT_PACKAGES_DIR}/share/reproc/copyright)
|
Loading…
x
Reference in New Issue
Block a user