mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 02:29:00 +08:00
55 lines
1.7 KiB
CMake
55 lines
1.7 KiB
CMake
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO fribidi/fribidi
|
|
REF v${VERSION}
|
|
SHA512 13d7104f80e1b480d65a4c47fd694f5930222f3db843b8b6c1b6af58c43ee74b08635ce6166d005451498d060e549e4c666aa30c46d4df003d9ad63dba1d854a
|
|
HEAD_REF master
|
|
PATCHES meson-crosscompile.patch
|
|
)
|
|
|
|
set(gen_tab_subdir "share/${PORT}/gen.tab")
|
|
|
|
set(options "")
|
|
if(VCPKG_CROSSCOMPILING)
|
|
set(gen_tab "${CURRENT_HOST_INSTALLED_DIR}/${gen_tab_subdir}")
|
|
cmake_path(NATIVE_PATH gen_tab gen_tab)
|
|
set(options "-Dpregenerated_tab=${gen_tab}")
|
|
endif()
|
|
|
|
vcpkg_configure_meson(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS
|
|
${options}
|
|
-Ddocs=false
|
|
-Dbin=false
|
|
-Dtests=false
|
|
)
|
|
|
|
vcpkg_install_meson()
|
|
vcpkg_fixup_pkgconfig()
|
|
vcpkg_copy_pdbs()
|
|
|
|
# Define static macro
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/include/fribidi/fribidi-common.h" "# elif defined(_WIN32) && ! defined(FRIBIDI_LIB_STATIC)" "# elif defined(_WIN32) && 0")
|
|
else()
|
|
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/include/fribidi/fribidi-common.h" "# elif defined(_WIN32) && ! defined(FRIBIDI_LIB_STATIC)" "# elif defined(_WIN32) && 1")
|
|
endif()
|
|
|
|
if(VCPKG_CROSSCOMPILING)
|
|
file(
|
|
COPY "${gen_tab}/fribidi-unicode-version.h"
|
|
DESTINATION "${CURRENT_PACKAGES_DIR}/include/fribidi"
|
|
)
|
|
else()
|
|
file(
|
|
COPY "${CURRENT_PACKAGES_DIR}/include/fribidi/fribidi-unicode-version.h"
|
|
DESTINATION "${CURRENT_PACKAGES_DIR}/${gen_tab_subdir}"
|
|
)
|
|
endif()
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
|
|
|
# Handle copyright
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/COPYING")
|