contrib/gst-python3/Pkgfile

27 lines
734 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
2022-12-20 16:14:58 +01:00
version=1.20.5
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 \
2021-01-07 14:48:25 +01:00
-D buildtype=plain \
2019-10-06 09:40:08 +02:00
-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
2021-01-07 14:48:25 +01:00
/usr/bin/python3 -OO -m compileall -d /usr/lib $PKG/usr/lib
2018-09-27 16:07:29 +02:00
}