mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 17:49:00 +08:00
5e8067541b
I noticed this while reviewing https://github.com/microsoft/vcpkg/pull/34472 that these would be better to use tarballs which are eligible to be asset cached.
52 lines
1.6 KiB
CMake
52 lines
1.6 KiB
CMake
vcpkg_download_distfile(ARCHIVE
|
|
URLS https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/snapshot/libgpiod-9068bb08dc3bf183eee6de2577ad266fe6b8f434.tar.gz
|
|
FILENAME libgpiod-${VERSION}.tar.gz
|
|
SHA512 3c569471007d12d94cb74377187dfe8b979de08f3747dca6348a4212ffb6d5f699af1d1135c25c70bcd17d533b09499fd0f1b3c5deac7d0a2d1bbf31092033c3
|
|
)
|
|
|
|
vcpkg_extract_source_archive(SOURCE_PATH
|
|
ARCHIVE "${ARCHIVE}"
|
|
)
|
|
|
|
if (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
|
|
list(APPEND OPTIONS --enable-shared=yes)
|
|
list(APPEND OPTIONS --enable-static=no)
|
|
else()
|
|
list(APPEND OPTIONS --enable-shared=no)
|
|
list(APPEND OPTIONS --enable-static=yes)
|
|
endif()
|
|
|
|
vcpkg_cmake_get_vars(cmake_vars_file)
|
|
include("${cmake_vars_file}")
|
|
|
|
if (VCPKG_DETECTED_CMAKE_CROSSCOMPILING STREQUAL "TRUE")
|
|
list(APPEND OPTIONS "CC=${VCPKG_DETECTED_CMAKE_C_COMPILER}")
|
|
if (VCPKG_TARGET_IS_LINUX AND (VCPKG_TARGET_ARCHITECTURE STREQUAL "arm64" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "arm"))
|
|
list(APPEND OPTIONS ac_cv_func_malloc_0_nonnull=yes)
|
|
list(APPEND OPTIONS ac_cv_func_realloc_0_nonnull=yes)
|
|
endif()
|
|
endif()
|
|
|
|
if ("cxx-bindings" IN_LIST FEATURES)
|
|
set(USE_CXX_BINDINGS yes)
|
|
else()
|
|
set(USE_CXX_BINDINGS no)
|
|
endif()
|
|
|
|
vcpkg_configure_make(
|
|
AUTOCONFIG
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS
|
|
${OPTIONS}
|
|
--enable-tools=no
|
|
--enable-tests=no
|
|
--enable-bindings-cxx=${USE_CXX_BINDINGS}
|
|
--enable-bindings-python=no
|
|
)
|
|
|
|
vcpkg_install_make()
|
|
vcpkg_fixup_pkgconfig()
|
|
vcpkg_copy_pdbs()
|
|
|
|
file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|