-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1127 from saprykin/plibsys
Add plibsys library to ports
- Loading branch information
Showing
2 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Source: plibsys | ||
Version: 0.0.3 | ||
Description: Highly portable C system library: threads and synchronization, sockets, IPC, data structures and more. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
include(vcpkg_common_functions) | ||
vcpkg_from_github( | ||
OUT_SOURCE_PATH SOURCE_PATH | ||
REPO saprykin/plibsys | ||
REF 0.0.3 | ||
SHA512 e2393fecb3e5feae81a4d60cd03e2ca17bc58453efaa5598beacdc5acedbc7c90374f9f851301fee08ace8dace843a2dff8c1c449cd457302363c98dd24e0415 | ||
HEAD_REF master | ||
) | ||
|
||
if (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic) | ||
SET(PLIBSYS_STATIC OFF) | ||
else() | ||
SET(PLIBSYS_STATIC ON) | ||
endif() | ||
|
||
vcpkg_configure_cmake( | ||
SOURCE_PATH ${SOURCE_PATH} | ||
OPTIONS | ||
-DPLIBSYS_TESTS=OFF | ||
-DPLIBSYS_COVERAGE=OFF | ||
-DPLIBSYS_BUILD_STATIC=${PLIBSYS_STATIC} | ||
) | ||
|
||
vcpkg_install_cmake() | ||
|
||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) | ||
|
||
file(INSTALL ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/plibsys RENAME copyright) | ||
|
||
if (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic) | ||
set(PLIBSYS_FILENAME plibsys) | ||
|
||
# Put shared libraries into the proper directory | ||
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/bin) | ||
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/debug/bin) | ||
|
||
file(RENAME ${CURRENT_PACKAGES_DIR}/lib/plibsys.dll ${CURRENT_PACKAGES_DIR}/bin/plibsys.dll) | ||
file(RENAME ${CURRENT_PACKAGES_DIR}/debug/lib/plibsys.dll ${CURRENT_PACKAGES_DIR}/debug/bin/plibsys.dll) | ||
else() | ||
set(PLIBSYS_FILENAME plibsysstatic) | ||
|
||
# For static build remove dynamic libraries | ||
file(REMOVE ${CURRENT_PACKAGES_DIR}/lib/plibsys.lib) | ||
file(REMOVE ${CURRENT_PACKAGES_DIR}/lib/plibsys.dll) | ||
file(REMOVE ${CURRENT_PACKAGES_DIR}/debug/lib/plibsys.lib) | ||
file(REMOVE ${CURRENT_PACKAGES_DIR}/debug/lib/plibsys.dll) | ||
endif() | ||
|
||
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/tmp) | ||
|
||
# Save library files | ||
file(RENAME ${CURRENT_PACKAGES_DIR}/lib/${PLIBSYS_FILENAME}.lib ${CURRENT_PACKAGES_DIR}/tmp/plibsys.lib) | ||
file(RENAME ${CURRENT_PACKAGES_DIR}/debug/lib/${PLIBSYS_FILENAME}.lib ${CURRENT_PACKAGES_DIR}/tmp/plibsys_debug.lib) | ||
|
||
# Remove unused shared libraries | ||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib) | ||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/lib) | ||
|
||
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/lib) | ||
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/debug/lib) | ||
|
||
# Re-install library files | ||
file(RENAME ${CURRENT_PACKAGES_DIR}/tmp/plibsys.lib ${CURRENT_PACKAGES_DIR}/lib/plibsys.lib) | ||
file(RENAME ${CURRENT_PACKAGES_DIR}/tmp/plibsys_debug.lib ${CURRENT_PACKAGES_DIR}/debug/lib/plibsys.lib) | ||
|
||
# Remove duplicate library files (already installed) | ||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/tmp) | ||
|
||
vcpkg_copy_pdbs() |