mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 03:09:00 +08:00
[clipboardxx] Add new port (#24023)
* [clipboardcxx] Add new port * Run x-add-version * license * Update clipboardcxx.json * Add homepage * update version * Update ports/clipboardcxx/vcpkg.json Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> * Update and rename ports/clipboardcxx/portfile.cmake to ports/clipboardxx/portfile.cmake * Rename ports/clipboardcxx/vcpkg.json to ports/clipboardxx/vcpkg.json * Rename clipboardcxx.json to clipboardxx.json * Update baseline.json * Update portfile.cmake * Update vcpkg.json * Update clipboardxx.json * . * Update clipboardxx.json * Nicole CRs - add `supports: !osx` - add `unofficial-clipboardxx-config.cmake` Co-authored-by: Jonliu1993 <13720414433@163.com> Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
This commit is contained in:
parent
f95b78e004
commit
1200c2237d
24
ports/clipboardxx/portfile.cmake
Normal file
24
ports/clipboardxx/portfile.cmake
Normal file
@ -0,0 +1,24 @@
|
||||
# Download the code from GitHub
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO Arian8j2/ClipboardXX
|
||||
REF d404c39ba384f8e16555610b3633cd7b58d84c59
|
||||
SHA512 503bc78cd9fd6096fa92524973d19cbc9169fca91450837a2af7f1518eb928dce10c01e446de1ab76ae0dc366b26831df403f021118fe5c3c2eaeb4d752f638f
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
vcpkg_cmake_configure(
|
||||
SOURCE_PATH "${SOURCE_PATH}"
|
||||
)
|
||||
|
||||
vcpkg_cmake_install()
|
||||
vcpkg_copy_pdbs()
|
||||
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug")
|
||||
|
||||
configure_file(
|
||||
"${CMAKE_CURRENT_LIST_DIR}/unofficial-clipboardxx-config.cmake.in"
|
||||
"${CURRENT_PACKAGES_DIR}/share/unofficial-clipboardxx/unofficial-clipboardxx-config.cmake"
|
||||
@ONLY
|
||||
)
|
||||
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
19
ports/clipboardxx/unofficial-clipboardxx-config.cmake.in
Normal file
19
ports/clipboardxx/unofficial-clipboardxx-config.cmake.in
Normal file
@ -0,0 +1,19 @@
|
||||
get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
||||
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
||||
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
||||
if(_IMPORT_PREFIX STREQUAL "/")
|
||||
set(_IMPORT_PREFIX "")
|
||||
endif()
|
||||
|
||||
add_library(unofficial::ClipboardXX INTERFACE IMPORTED)
|
||||
set_target_properties(unofficial::ClipboardXX PROPERTIES
|
||||
INTERFACE_INCLUDE_DIRECTORIES "${PACKAGE_PREFIX_DIR}/include"
|
||||
)
|
||||
|
||||
if("@VCPKG_TARGET_IS_LINUX@")
|
||||
set_target_properties(unofficial::ClipboardXX PROPERTIES
|
||||
INTERFACE_LINK_LIBRARIES "xcb;pthread"
|
||||
)
|
||||
endif()
|
||||
|
||||
unset(_IMPORT_PREFIX)
|
18
ports/clipboardxx/vcpkg.json
Normal file
18
ports/clipboardxx/vcpkg.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "clipboardxx",
|
||||
"version-date": "2022-02-04",
|
||||
"description": "Header only, lightweight and cross platform C++ library for copy and paste text from clipboard.",
|
||||
"homepage": "https://github.com/Arian8j2/ClipboardXX",
|
||||
"license": "MIT",
|
||||
"supports": "!osx",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
"host": true
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake-config",
|
||||
"host": true
|
||||
}
|
||||
]
|
||||
}
|
@ -1420,6 +1420,10 @@
|
||||
"baseline": "1.5.0",
|
||||
"port-version": 0
|
||||
},
|
||||
"clipboardxx": {
|
||||
"baseline": "2022-02-04",
|
||||
"port-version": 0
|
||||
},
|
||||
"clipp": {
|
||||
"baseline": "2019-04-30",
|
||||
"port-version": 1
|
||||
|
9
versions/c-/clipboardxx.json
Normal file
9
versions/c-/clipboardxx.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "081dccf5f7ac08990ef5814f6e2b99d1c2d9a385",
|
||||
"version-date": "2022-02-04",
|
||||
"port-version": 0
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user