mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
removed community/libtg_owt
This commit is contained in:
parent
66abcf2abc
commit
4b178c489e
1 changed files with 0 additions and 61 deletions
|
@ -1,61 +0,0 @@
|
|||
# Maintainer: Jiachen YANG <farseerfc at archlinux dot org>
|
||||
# Maintainer: Sven-Hendrik Haase <svenstaro@archlinux.org>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - disable neon (-DTG_OWT_ARCH_ARMV7_USE_NEON=OFF)
|
||||
|
||||
pkgname=libtg_owt
|
||||
# It seems the currently desired version can be gotten from
|
||||
# https://github.com/telegramdesktop/tdesktop/blob/dev/Telegram/build/docker/centos_env/Dockerfile
|
||||
_commit=1fd131d
|
||||
pkgver=0.git11.${_commit}
|
||||
pkgrel=1
|
||||
pkgdesc='WebRTC library'
|
||||
arch=('x86_64')
|
||||
url='https://github.com/desktop-app/tg_owt'
|
||||
license=('BSD')
|
||||
# libdrm is dynamically loaded via dlopen
|
||||
depends=('libdrm')
|
||||
makedepends=('git' 'ninja' 'unzip' 'cmake' 'protobuf' 'libxrandr' 'libxcomposite' 'openssl' 'glibc'
|
||||
'ffmpeg' 'libva' 'opus' 'yasm' 'libjpeg-turbo' 'pipewire' 'libxtst' 'abseil-cpp' 'libepoxy')
|
||||
options=('staticlibs')
|
||||
source=("tg_owt::git+${url}.git#commit=${_commit}"
|
||||
"libvpx::git+https://chromium.googlesource.com/webm/libvpx.git"
|
||||
"libyuv::git+https://chromium.googlesource.com/libyuv/libyuv.git"
|
||||
"pipewire::git+https://github.com/PipeWire/pipewire.git")
|
||||
b2sums=('SKIP'
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
'SKIP')
|
||||
|
||||
prepare() {
|
||||
cd tg_owt
|
||||
git submodule init
|
||||
git config submodule.src/third_party/libvpx/source/libvpx.url "$srcdir"/libvpx
|
||||
git config submodule.src/third_party/libyuv.url "$srcdir"/libyuv
|
||||
git config submodule.src/third_party/pipewire.url "$srcdir"/pipewire
|
||||
git submodule update
|
||||
}
|
||||
|
||||
build() {
|
||||
cd tg_owt
|
||||
|
||||
export CFLAGS+=" -ffat-lto-objects"
|
||||
export CXXFLAGS+=" -ffat-lto-objects -I/usr/include/libdrm"
|
||||
# Upstream stated that only static builds are really supported so that's what we'll do.
|
||||
# https://github.com/desktop-app/tg_owt/issues/75#issuecomment-992061171
|
||||
cmake \
|
||||
-B build \
|
||||
-G Ninja \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DBUILD_SHARED_LIBS=OFF \
|
||||
-DTG_OWT_ARCH_ARMV7_USE_NEON=OFF
|
||||
ninja -C build
|
||||
}
|
||||
|
||||
package() {
|
||||
cd tg_owt
|
||||
DESTDIR="${pkgdir}/" ninja -C build install
|
||||
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
||||
}
|
Loading…
Reference in a new issue