~alpine/aports

testing/mediastreamer2-plugin-x264: new aport v1 NEEDS REVISION

Martin Schmidt: 1
 testing/mediastreamer2-plugin-x264: new aport

 1 files changed, 37 insertions(+), 0 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.alpinelinux.org/~alpine/aports/patches/3352/mbox | git am -3
Learn more about email & git

[PATCH] testing/mediastreamer2-plugin-x264: new aport Export this patch

This hopefully gives us video in linphonec.
---
 testing/mediastreamer2-plugin-x264/APKBUILD | 37 +++++++++++++++++++++
 1 file changed, 37 insertions(+)
 create mode 100644 testing/mediastreamer2-plugin-x264/APKBUILD

diff --git a/testing/mediastreamer2-plugin-x264/APKBUILD b/testing/mediastreamer2-plugin-x264/APKBUILD
new file mode 100644
index 0000000000..159ac84f0e
--- /dev/null
+++ b/testing/mediastreamer2-plugin-x264/APKBUILD
@@ -0,0 +1,37 @@
pkgname=mediastreamer2-plugin-x264
pkgver=20200721
pkgrel=0
pkgdesc="GPL plugin to bring video H264 encoding/decoding capabilities to mediastreamer2 applications"
url="https://gitlab.linphone.org/BC/public/msx264"
arch="all"
license="GPL-2.0-or-later"
options="!check" # no test available
makedepends="cmake ortp-dev x264-dev"

source="https://gitlab.linphone.org/BC/public/msx264/-/archive/master/msx264-master.tar.gz"

builddir="$srcdir/msx264-master"

build() {

	sed -i 's/ORTP\ REQUIRED/ortp\ REQUIRED/g' src/CMakeLists.txt

	cmake -B build \
		-DCMAKE_BUILD_TYPE=None \
		-DCMAKE_INSTALL_PREFIX=/usr \
		-DCMAKE_INSTALL_LIBDIR=lib \
		-DCMAKE_MODULE_PATH=/usr/lib/cmake \
		-DCMAKE_SKIP_INSTALL_RPATH=ON \
		-DENABLE_STRICT=NO \
		-DENABLE_SHARED=YES

	make  -C build
}

package() {

	make -C build DESTDIR="$pkgdir" install
}


sha512sums="2f16624dcdbeea10eaf257d524e862b4db5f559189554d22f72696c6fbb99a8382bdc75e13b826c9468464412dedc101bbe57dd2d0e13eb6d7223de310d4ed52  msx264-master.tar.gz"
--
2.27.0