diff --git a/srcpkgs/tg_owt/patches/fix-missing-cstdint-include-musl.patch b/srcpkgs/tg_owt/patches/fix-missing-cstdint-include-musl.patch new file mode 100644 index 00000000000..cbb30143ea6 --- /dev/null +++ b/srcpkgs/tg_owt/patches/fix-missing-cstdint-include-musl.patch @@ -0,0 +1,10 @@ +--- a/src/modules/audio_coding/neteq/reorder_optimizer.cc ++++ b/src/modules/audio_coding/neteq/reorder_optimizer.cc +@@ -11,6 +11,7 @@ + #include "modules/audio_coding/neteq/reorder_optimizer.h" + + #include ++#include + #include + #include + diff --git a/srcpkgs/tg_owt/template b/srcpkgs/tg_owt/template index 08fe4355202..2fbdafe7b67 100644 --- a/srcpkgs/tg_owt/template +++ b/srcpkgs/tg_owt/template @@ -1,9 +1,10 @@ # Template file for 'tg_owt' pkgname=tg_owt -version=0.0.0.20220508 +version=0.0.0.20221208 revision=1 -_commit=10d5f4bf77333ef6b43516f90d2ce13273255f41 -_libyuv_commit=ad890067f661dc747a975bc55ba3767fe30d4452 +_commit=9b70d7679e86e6c216127d5a6a06ef5aa4f54793 +_libyuv_commit=00950840d1c9bcbb3eb6ebc5aac5793e71166c8b +_abseil_commit=8c0b94e793a66495e0b1f34a5eb26bd7dc672db0 _crc32c_commit=21fc8ef30415a635e7351ffa0e5d5367943d4a94 build_style=cmake configure_args="-DBUILD_SHARED_LIBS=OFF -DTG_OWT_ARCH_ARMV7_USE_NEON=OFF" @@ -20,11 +21,13 @@ license="GPL-3.0-or-later" homepage="https://github.com/desktop-app/tg_owt" distfiles="https://github.com/desktop-app/tg_owt/archive/${_commit}.tar.gz https://chromium.googlesource.com/libyuv/libyuv/+archive/${_libyuv_commit}.tar.gz - https://github.com/google/crc32c/archive/${_crc32c_commit}.tar.gz" -checksum="@b8a4b1a9e4f8936c02b4a31c19d6282a914df976b9cbdfadb3ae40ca1a185ac6 - @1dd51820852df840c339bf3f18e6cf1166de33d5631a69cd1eae5b2b34c113e3 - @b359ed4f5fd0321d807fd7301e66399c311c1fe6ab4c6a0f5538587d97ba4a8d" -skip_extraction="${_libyuv_commit}.tar.gz ${_crc32c_commit}.tar.gz" + https://github.com/google/crc32c/archive/${_crc32c_commit}.tar.gz + https://github.com/abseil/abseil-cpp/archive/${_abseil_commit}.tar.gz" +checksum="@572576cd1680773e45e1afbc024637d2af3b89b5d5fdfc7ba403bf98a0224bdc + @36881fb364593925d012ff452eda3eb54c2c50cd322f353b76071d342ef72c1d + @b359ed4f5fd0321d807fd7301e66399c311c1fe6ab4c6a0f5538587d97ba4a8d + @05b5d2f4b540602e8b247116be0559b8a26addac53f026f751a93163946936fb" +skip_extraction="${_libyuv_commit}.tar.gz ${_crc32c_commit}.tar.gz ${_abseil_commit}.tar.gz" if [ "$XBPS_TARGET_LIBC" = "musl" ]; then makedepends+=" musl-legacy-compat" @@ -37,4 +40,5 @@ fi post_extract() { bsdtar xzf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${_libyuv_commit}.tar.gz -C ${wrksrc}/src/third_party/libyuv bsdtar xzf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${_crc32c_commit}.tar.gz --strip-components 1 -C ${wrksrc}/src/third_party/crc32c/src + bsdtar xzf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${_abseil_commit}.tar.gz --strip-components 1 -C ${wrksrc}/src/third_party/abseil-cpp }