mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-18 09:43:02 +08:00
[redis-plus-plus] Add new port (#8846)
This commit is contained in:
parent
8d26ea0991
commit
fb26fc5192
5
ports/redis-plus-plus/CONTROL
Normal file
5
ports/redis-plus-plus/CONTROL
Normal file
@ -0,0 +1,5 @@
|
||||
Source: redis-plus-plus
|
||||
Version: 1.1.1
|
||||
Homepage: https://github.com/sewenew/redis-plus-plus
|
||||
Description: This is a C++ client for Redis. It's based on hiredis, and written in C++ 11.
|
||||
Build-Depends: hiredis
|
13
ports/redis-plus-plus/disable-build-test.patch
Normal file
13
ports/redis-plus-plus/disable-build-test.patch
Normal file
@ -0,0 +1,13 @@
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index fb160b5..6235d89 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -34,7 +34,7 @@ set_target_properties(${SHARED_LIB} PROPERTIES OUTPUT_NAME ${PROJECT_NAME})
|
||||
set_target_properties(${STATIC_LIB} PROPERTIES CLEAN_DIRECT_OUTPUT 1)
|
||||
set_target_properties(${SHARED_LIB} PROPERTIES CLEAN_DIRECT_OUTPUT 1)
|
||||
|
||||
-add_subdirectory(test)
|
||||
+#add_subdirectory(test)
|
||||
|
||||
# Install static lib.
|
||||
install(TARGETS ${STATIC_LIB}
|
24
ports/redis-plus-plus/portfile.cmake
Normal file
24
ports/redis-plus-plus/portfile.cmake
Normal file
@ -0,0 +1,24 @@
|
||||
vcpkg_fail_port_install(ON_TARGET "Windows")
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO sewenew/redis-plus-plus
|
||||
REF d35267580568517f09bdf70cb582e5284c25401a
|
||||
SHA512 f065b97d438772300e30485a7550bc0fff00005f1056cf9c23216ea388fa088303869ccf2eaa70ee8b06cc0fc2406c9c6faddd5ad08759ee2d0665ac91761914
|
||||
HEAD_REF master
|
||||
PATCHES disable-build-test.patch
|
||||
)
|
||||
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
PREFER_NINJIA
|
||||
)
|
||||
|
||||
vcpkg_install_cmake()
|
||||
|
||||
vcpkg_copy_pdbs()
|
||||
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||||
|
||||
# Handle copyright
|
||||
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright )
|
Loading…
Reference in New Issue
Block a user