mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-05 06:57:25 +08:00
c7424ce15f
Fixes #36695 Update port `libredwg` to the latest version 0.13.2 - [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [x] SHA512s are updated for each updated download. - [ ] ~~The "supports" clause reflects platforms that may be fixed by this new version.~~ - [ ] ~~Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file.~~ - [ ] ~~Any patches that are no longer applied are deleted from the port's directory.~~ - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file. Feature `tools` tested successfully in the following triplrt: - x86-windows - x64-windows - x64-windows-static --------- Co-authored-by: Jon <v-zhli17@microsoft.com>
57 lines
1.7 KiB
CMake
57 lines
1.7 KiB
CMake
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO LibreDWG/libredwg
|
|
REF "${VERSION}"
|
|
SHA512 ae93bf958c196cc54b8c05664e7201b82a3975845d544ae45cde437d716507ef1de08bf89615b5a67cf3841a014782af335031668ad59b34721a78648caaba67
|
|
HEAD_REF master
|
|
PATCHES
|
|
fix_install.patch
|
|
fix_dependency.patch
|
|
fix_arm64_build.patch
|
|
)
|
|
|
|
# If generate dwg manipulation tools
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
INVERTED_FEATURES
|
|
tools LIBREDWG_LIBONLY
|
|
)
|
|
|
|
# libredwg will read the version
|
|
file(WRITE "${SOURCE_PATH}/.version" ${VERSION})
|
|
|
|
# Fix https://github.com/LibreDWG/libredwg/issues/652#issuecomment-1454035167
|
|
if(APPLE)
|
|
vcpkg_replace_string("${SOURCE_PATH}/src/common.h"
|
|
[[defined(COMMON_TEST_C)]]
|
|
[[1]]
|
|
)
|
|
vcpkg_replace_string("${SOURCE_PATH}/src/common.c"
|
|
[[defined(COMMON_TEST_C)]]
|
|
[[1]]
|
|
)
|
|
endif()
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS
|
|
${FEATURE_OPTIONS}
|
|
-DBUILD_TESTING=OFF
|
|
-DDISABLE_WERROR=ON
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
vcpkg_copy_pdbs()
|
|
vcpkg_fixup_pkgconfig()
|
|
|
|
vcpkg_cmake_config_fixup(PACKAGE_NAME unofficial-libredwg CONFIG_PATH share/unofficial-libredwg)
|
|
|
|
if("tools" IN_LIST FEATURES)
|
|
vcpkg_copy_tools(TOOL_NAMES dwg2dxf dwg2SVG dwgbmp dwggrep dwglayers dwgread dwgrewrite dwgwrite dxf2dwg AUTO_CLEAN)
|
|
vcpkg_copy_tool_dependencies("${CURRENT_PACKAGES_DIR}/tools/libredwg")
|
|
endif()
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include" "${CURRENT_PACKAGES_DIR}/debug/share")
|
|
|
|
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/COPYING")
|