contrib/gst-python3/Pkgfile

26 lines
675 B
Plaintext
Raw Normal View History

2018-09-27 16:07:29 +02:00
# Description: Python bindings for gstreamer.
# URL: https://gstreamer.freedesktop.org/modules/gst-python.html
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: gst-plugins-base python3-gobject
name=gst-python3
2019-12-10 11:19:51 +01:00
version=1.16.2
2018-09-27 16:07:29 +02:00
release=1
source=(https://gstreamer.freedesktop.org/src/gst-python/gst-python-$version.tar.xz)
build() {
cd gst-python-$version
2019-10-06 09:40:08 +02:00
meson build \
--prefix=/usr \
--libexecdir=/usr/lib \
-D buildtype=release \
-D python=/usr/bin/python3
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
/usr/bin/python3 -m compileall -d /usr/lib $PKG/usr/lib
/usr/bin/python3 -O -m compileall -d /usr/lib $PKG/usr/lib
2018-09-27 16:07:29 +02:00
}