aboutsummaryrefslogtreecommitdiff
path: root/ports
diff options
context:
space:
mode:
authorRich Logan <rich@richlogan.co.uk>2021-03-22 22:58:34 +0000
committerGitHub <noreply@github.com>2021-03-22 15:58:34 -0700
commit2bc10eae2fb0b8c7c098325c4e9d82aa5d0329d9 (patch)
tree5ff83598adc06ec1999da49161e33224cef7cb9b /ports
parent00150f5bba4970c4b4a2389e0944313d0a2b5a0f (diff)
downloadvcpkg-2bc10eae2fb0b8c7c098325c4e9d82aa5d0329d9.tar.gz
vcpkg-2bc10eae2fb0b8c7c098325c4e9d82aa5d0329d9.zip
[openh264] Add openh264 port (#16714)
* Add openh264 port * Fixes for CI * Don't build tests * Add git dependency * Update gas-preprocessor * Update gas subfolder name * No UWP support for meson builds * Manifest format * Update ports/openh264/vcpkg.json Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * Update versions * [openh264] Tweak precise tool dependencies Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
Diffstat (limited to 'ports')
-rw-r--r--ports/openh264/portfile.cmake32
-rw-r--r--ports/openh264/vcpkg.json10
2 files changed, 42 insertions, 0 deletions
diff --git a/ports/openh264/portfile.cmake b/ports/openh264/portfile.cmake
new file mode 100644
index 000000000..275b18b96
--- /dev/null
+++ b/ports/openh264/portfile.cmake
@@ -0,0 +1,32 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO cisco/openh264
+ REF f15f940425eebf24ce66984db2445733cf500b7b
+ SHA512 361003296e9cef2956aeff76ae4df7a949a585710facd84a92c1b4164c5a4522d6615fcc485ebc2e50be8a13feb942b870efdd28837307467081cb1eba1f17d2
+)
+
+if((VCPKG_TARGET_ARCHITECTURE STREQUAL "x86" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "x64"))
+ vcpkg_find_acquire_program(NASM)
+ get_filename_component(NASM_EXE_PATH ${NASM} DIRECTORY)
+ vcpkg_add_to_path(${NASM_EXE_PATH})
+elseif(VCPKG_TARGET_IS_WINDOWS)
+ vcpkg_find_acquire_program(GASPREPROCESSOR)
+ foreach(GAS_PATH ${GASPREPROCESSOR})
+ get_filename_component(GAS_ITEM_PATH ${GAS_PATH} DIRECTORY)
+ vcpkg_add_to_path(${GAS_ITEM_PATH})
+ endforeach(GAS_PATH)
+endif()
+
+vcpkg_configure_meson(
+ SOURCE_PATH ${SOURCE_PATH}
+ OPTIONS -Dtests=disabled
+)
+
+vcpkg_install_meson()
+vcpkg_copy_pdbs()
+
+if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
+ file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
+endif()
+
+configure_file("${SOURCE_PATH}/LICENSE" "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright" COPYONLY)
diff --git a/ports/openh264/vcpkg.json b/ports/openh264/vcpkg.json
new file mode 100644
index 000000000..aa8f2b53e
--- /dev/null
+++ b/ports/openh264/vcpkg.json
@@ -0,0 +1,10 @@
+{
+ "name": "openh264",
+ "version-date": "2021-03-16",
+ "description": "OpenH264 is a codec library which supports H.264 encoding and decoding. It is suitable for use in real time applications such as WebRTC.",
+ "homepage": "https://www.openh264.org/",
+ "supports": "!uwp",
+ "dependencies": [
+ "tool-meson"
+ ]
+}