vcpkg/ports/geographiclib/portfile.cmake
Charles Karney 979a4d366b
[geographiclib] update version to 2.1.2 (#28321)
* [geographiclib] changes for 2.1.2

* [geographiclib] Update to version 2.1.2
2022-12-14 10:38:14 -08:00

56 lines
1.5 KiB
CMake

vcpkg_from_sourceforge(
OUT_SOURCE_PATH SOURCE_PATH
REPO geographiclib
REF distrib-C++
FILENAME "GeographicLib-2.1.2.tar.gz"
SHA512 0f43657af93028f62f934a6290d17245d2ac5308753ed33de87e2e5da39793a28e04c40897eee34cc3786eb82dcbb49b5fcf5c21214b1e5519e5f14fab34382f
)
vcpkg_check_features(
OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
"tools" TOOLS
)
# GeographicLib's CMakeLists.txt allows the installation directories for
# all the components to be set independently. A "false" value, e.g., an
# empty string or OFF (-DBINDIR=OFF), indicates that the corresponding
# component should not be installed.
if(TOOLS)
set(TOOL_OPTION "-DBINDIR=tools/${PORT}")
else()
set(TOOL_OPTION -DBINDIR=OFF)
endif()
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS ${TOOL_OPTION}
"-DCMAKEDIR=share/${PORT}"
-DDOCDIR=OFF
-DEXAMPLEDIR=OFF
-DMANDIR=OFF
-DSBINDIR=OFF
)
vcpkg_cmake_install()
vcpkg_cmake_config_fixup()
vcpkg_copy_pdbs()
vcpkg_fixup_pkgconfig()
if(tools IN_LIST FEATURES)
vcpkg_copy_tool_dependencies("${CURRENT_PACKAGES_DIR}/tools/${PORT}")
endif()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/tools")
file(INSTALL "${SOURCE_PATH}/LICENSE.txt"
DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}"
RENAME copyright)
# Install usage
configure_file("${CMAKE_CURRENT_LIST_DIR}/usage"
"${CURRENT_PACKAGES_DIR}/share/${PORT}/usage" @ONLY)