gst-python3: initial import

This commit is contained in:
Danny Rawlins 2018-09-28 00:07:29 +10:00
parent 00b90cdfed
commit 5a5488ea1c
3 changed files with 41 additions and 0 deletions

18
gst-python3/.footprint Normal file
View File

@ -0,0 +1,18 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/gstreamer-1.0/
-rwxr-xr-x root/root usr/lib/gstreamer-1.0/libgstpython.cpython-36m-x86_64-linux-gnu.so
-rwxr-xr-x root/root usr/lib/gstreamer-1.0/libgstpython3.la
drwxr-xr-x root/root usr/lib/python3.6/
drwxr-xr-x root/root usr/lib/python3.6/site-packages/
drwxr-xr-x root/root usr/lib/python3.6/site-packages/gi/
drwxr-xr-x root/root usr/lib/python3.6/site-packages/gi/overrides/
-rw-r--r-- root/root usr/lib/python3.6/site-packages/gi/overrides/Gst.py
-rw-r--r-- root/root usr/lib/python3.6/site-packages/gi/overrides/GstPbutils.py
drwxr-xr-x root/root usr/lib/python3.6/site-packages/gi/overrides/__pycache__/
-rw-r--r-- root/root usr/lib/python3.6/site-packages/gi/overrides/__pycache__/Gst.cpython-36.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.6/site-packages/gi/overrides/__pycache__/Gst.cpython-36.pyc
-rw-r--r-- root/root usr/lib/python3.6/site-packages/gi/overrides/__pycache__/GstPbutils.cpython-36.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.6/site-packages/gi/overrides/__pycache__/GstPbutils.cpython-36.pyc
-rwxr-xr-x root/root usr/lib/python3.6/site-packages/gi/overrides/_gi_gst.cpython-36m-x86_64-linux-gnu.so
-rwxr-xr-x root/root usr/lib/python3.6/site-packages/gi/overrides/_gi_gst.la

5
gst-python3/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3ziw7lK53pdSdEFt8o8pdRIPsn8bEH1TfqEDYh8IV9PTPvE+YPuITbVWgLMiTPuKkpqOqVeCCeqd1CNQXIgkegA=
SHA256 (Pkgfile) = 8ea8fa8a731b27be59724145b610c94cec8dbd541f1bc59aaa4129737d2231cf
SHA256 (.footprint) = 5761d965ac630536a469acdd303614622d62a89e6074533d9dac0ca94218f05e
SHA256 (gst-python-1.14.3.tar.xz) = 4fc3e76c965384e54fb6be819d606ab304988eb677cf0c5dcc0dd555e3ad8307

18
gst-python3/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# 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
version=1.14.3
release=1
source=(https://gstreamer.freedesktop.org/src/gst-python/gst-python-$version.tar.xz)
build() {
cd gst-python-$version
PYTHON=/usr/bin/python3 ./configure --prefix=/usr
make
make DESTDIR=$PKG install
mv $PKG/usr/lib/gstreamer-1.0/libgstpython{,3}.la
}