mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 05:15:11 +08:00
658a8165a9
* [libflac] Bump to 1.4.2. - The license was incorrectly set to GFDL instead of BSD-3. See: https://github.com/xiph/flac#components - Remove patches that were merged upstream. - Stack protection and fortify source under mingw is checked upstream. - CMake config file location has changed. - Use vcpkg_install_copyright to install license. * [libflac] Add usage file. * [libflac] Update baseline.
79 lines
2.3 KiB
CMake
79 lines
2.3 KiB
CMake
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO xiph/flac
|
|
REF "${VERSION}"
|
|
SHA512 1b4992024dffe83916f0da8726f73bf932a52d8c3346c35ab1ee81b82d68ff01faa8c477aa29d7099a09611664dee723db5be3087f709218c33e564f77810013
|
|
HEAD_REF master
|
|
PATCHES
|
|
uwp-library-console.patch
|
|
fix-compile-options.patch
|
|
)
|
|
|
|
if("asm" IN_LIST FEATURES)
|
|
vcpkg_find_acquire_program(NASM)
|
|
get_filename_component(NASM_PATH "${NASM}" DIRECTORY)
|
|
vcpkg_add_to_path("${NASM_PATH}")
|
|
endif()
|
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
FEATURES
|
|
asm WITH_ASM
|
|
)
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS
|
|
${FEATURE_OPTIONS}
|
|
-DBUILD_PROGRAMS=OFF
|
|
-DBUILD_EXAMPLES=OFF
|
|
-DBUILD_DOCS=OFF
|
|
-DBUILD_TESTING=OFF
|
|
-DINSTALL_MANPAGES=OFF
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
|
|
vcpkg_cmake_config_fixup(PACKAGE_NAME FLAC CONFIG_PATH lib/cmake/FLAC)
|
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
|
file(REMOVE "${CURRENT_PACKAGES_DIR}/share/LICENSE")
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
|
|
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/include/FLAC/export.h"
|
|
"#if defined(FLAC__NO_DLL)"
|
|
"#if 0"
|
|
)
|
|
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/include/FLAC++/export.h"
|
|
"#if defined(FLAC__NO_DLL)"
|
|
"#if 0"
|
|
)
|
|
else()
|
|
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/include/FLAC/export.h"
|
|
"#if defined(FLAC__NO_DLL)"
|
|
"#if 1"
|
|
)
|
|
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/include/FLAC++/export.h"
|
|
"#if defined(FLAC__NO_DLL)"
|
|
"#if 1"
|
|
)
|
|
endif()
|
|
|
|
if(VCPKG_TARGET_IS_WINDOWS)
|
|
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/lib/pkgconfig/flac.pc" " -lm" "")
|
|
|
|
if(EXISTS "${CURRENT_PACKAGES_DIR}/debug/lib/pkgconfig/flac.pc")
|
|
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/debug/lib/pkgconfig/flac.pc" " -lm" "")
|
|
endif()
|
|
endif()
|
|
|
|
vcpkg_fixup_pkgconfig()
|
|
|
|
# This license (BSD) is relevant only for library - if someone would want to install
|
|
# FLAC cmd line tools as well additional license (GPL) should be included
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/COPYING.Xiph")
|
|
|
|
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|