2023-12-07 06:02:56 +08:00
|
|
|
vcpkg_from_bitbucket(
|
2018-02-23 00:24:51 +08:00
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
2023-12-07 06:02:56 +08:00
|
|
|
REPO multicoreware/x265_git
|
|
|
|
REF "${VERSION}"
|
|
|
|
SHA512 e95e454b438114cf90e32818847afa65b54caf69442a4a39dc92f125a7ec6f99c83ec509549ced3395cd5a77305abef0ecdad38b4a359f82fb17fce6c4c7cc7a
|
2018-02-23 00:24:51 +08:00
|
|
|
HEAD_REF master
|
2019-10-08 01:35:13 +08:00
|
|
|
PATCHES
|
|
|
|
disable-install-pdb.patch
|
2023-12-07 06:02:56 +08:00
|
|
|
version.patch
|
[alsa,fdk-aac,ffmpeg,libsrt,snappy,x265] Code cleanup, fix and use pkg-config (#39077)
- Setup and use pkg-config for ffmpeg dependencies.
https://github.com/microsoft/vcpkg/pull/38011#discussion_r1623174355.
- Export actual c++ link libraries for fdk-aac via pkg-config. (Same
pattern as lerc, geos.)
- Rectify link libraries in pkg-config for alsa, libsrt, snappy, x265.
- Burn-in dllimport for libsrt and x265.
- Pass detected STRIP to ffmpeg. Fixes
https://github.com/microsoft/vcpkg/issues/36852.
2024-06-06 15:48:31 +08:00
|
|
|
linkage.diff
|
|
|
|
pkgconfig.diff
|
2018-02-28 02:36:28 +08:00
|
|
|
)
|
|
|
|
|
2022-07-14 04:17:56 +08:00
|
|
|
set(ASSEMBLY_OPTIONS "-DENABLE_ASSEMBLY=OFF")
|
|
|
|
if(VCPKG_TARGET_IS_WINDOWS)
|
2019-02-22 09:05:19 +08:00
|
|
|
vcpkg_find_acquire_program(NASM)
|
2022-07-14 04:17:56 +08:00
|
|
|
set(ASSEMBLY_OPTIONS "-DENABLE_ASSEMBLY=ON" "-DNASM_EXECUTABLE=${NASM}")
|
|
|
|
endif()
|
2019-02-22 09:05:19 +08:00
|
|
|
|
2018-02-28 02:36:28 +08:00
|
|
|
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" ENABLE_SHARED)
|
|
|
|
|
2022-07-14 04:17:56 +08:00
|
|
|
vcpkg_cmake_configure(
|
|
|
|
SOURCE_PATH "${SOURCE_PATH}/source"
|
2019-02-22 09:05:19 +08:00
|
|
|
OPTIONS
|
2022-07-14 04:17:56 +08:00
|
|
|
${ASSEMBLY_OPTIONS}
|
2019-02-22 09:05:19 +08:00
|
|
|
-DENABLE_SHARED=${ENABLE_SHARED}
|
2022-07-14 04:17:56 +08:00
|
|
|
-DENABLE_LIBNUMA=OFF
|
2023-12-07 06:02:56 +08:00
|
|
|
"-DVERSION=${VERSION}"
|
2019-02-22 09:05:19 +08:00
|
|
|
OPTIONS_DEBUG
|
|
|
|
-DENABLE_CLI=OFF
|
2022-07-14 04:17:56 +08:00
|
|
|
MAYBE_UNUSED_VARIABLES
|
|
|
|
ENABLE_LIBNUMA
|
2018-02-23 00:24:51 +08:00
|
|
|
)
|
|
|
|
|
2022-07-14 04:17:56 +08:00
|
|
|
vcpkg_cmake_install()
|
2018-02-23 00:24:51 +08:00
|
|
|
vcpkg_copy_pdbs()
|
[alsa,fdk-aac,ffmpeg,libsrt,snappy,x265] Code cleanup, fix and use pkg-config (#39077)
- Setup and use pkg-config for ffmpeg dependencies.
https://github.com/microsoft/vcpkg/pull/38011#discussion_r1623174355.
- Export actual c++ link libraries for fdk-aac via pkg-config. (Same
pattern as lerc, geos.)
- Rectify link libraries in pkg-config for alsa, libsrt, snappy, x265.
- Burn-in dllimport for libsrt and x265.
- Pass detected STRIP to ffmpeg. Fixes
https://github.com/microsoft/vcpkg/issues/36852.
2024-06-06 15:48:31 +08:00
|
|
|
vcpkg_fixup_pkgconfig()
|
2018-02-23 00:24:51 +08:00
|
|
|
|
2020-08-22 00:25:48 +08:00
|
|
|
vcpkg_copy_tools(TOOL_NAMES x265 AUTO_CLEAN)
|
2018-02-28 02:36:28 +08:00
|
|
|
|
[alsa,fdk-aac,ffmpeg,libsrt,snappy,x265] Code cleanup, fix and use pkg-config (#39077)
- Setup and use pkg-config for ffmpeg dependencies.
https://github.com/microsoft/vcpkg/pull/38011#discussion_r1623174355.
- Export actual c++ link libraries for fdk-aac via pkg-config. (Same
pattern as lerc, geos.)
- Rectify link libraries in pkg-config for alsa, libsrt, snappy, x265.
- Burn-in dllimport for libsrt and x265.
- Pass detected STRIP to ffmpeg. Fixes
https://github.com/microsoft/vcpkg/issues/36852.
2024-06-06 15:48:31 +08:00
|
|
|
if(VCPKG_TARGET_IS_WINDOWS AND VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
|
|
|
|
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/include/x265.h" "#ifdef X265_API_IMPORTS" "#if 1")
|
2020-12-02 06:13:58 +08:00
|
|
|
endif()
|
|
|
|
|
[alsa,fdk-aac,ffmpeg,libsrt,snappy,x265] Code cleanup, fix and use pkg-config (#39077)
- Setup and use pkg-config for ffmpeg dependencies.
https://github.com/microsoft/vcpkg/pull/38011#discussion_r1623174355.
- Export actual c++ link libraries for fdk-aac via pkg-config. (Same
pattern as lerc, geos.)
- Rectify link libraries in pkg-config for alsa, libsrt, snappy, x265.
- Burn-in dllimport for libsrt and x265.
- Pass detected STRIP to ffmpeg. Fixes
https://github.com/microsoft/vcpkg/issues/36852.
2024-06-06 15:48:31 +08:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
2020-08-19 03:58:14 +08:00
|
|
|
|
2023-12-07 06:02:56 +08:00
|
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/COPYING")
|