mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 11:15:13 +03:00
28 lines
850 B
Text
28 lines
850 B
Text
# Contributor: Carlo Landmeter <clandmeter@alpinelinux.org>
|
|
# Maintainer:
|
|
pkgname=py3-gst
|
|
pkgver=1.18.4
|
|
pkgrel=1
|
|
pkgdesc="GStreamer Python3 bindings"
|
|
url="https://cgit.freedesktop.org/gstreamer/gst-python/"
|
|
arch="all"
|
|
license="LGPL-2.1-or-later"
|
|
depends="py3-gobject3 gst-plugins-base"
|
|
makedepends="gst-plugins-base-dev gstreamer-dev meson py3-gobject3-dev
|
|
python3-dev"
|
|
source="https://gstreamer.freedesktop.org/src/gst-python/gst-python-$pkgver.tar.xz
|
|
"
|
|
builddir="$srcdir/gst-python-$pkgver"
|
|
|
|
build() {
|
|
abuild-meson \
|
|
-Dpython=/usr/bin/python3 \
|
|
. output
|
|
meson compile ${JOBS:+-j ${JOBS}} -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C output
|
|
}
|
|
|
|
sha512sums="6b9df9e4faaeb030f0596c9e52262c0f82b8854faf821497a840a762913dccb005321c60565754ef571e34976fcda481a41aefbbd486c2932377a95121433bf5 gst-python-1.18.4.tar.xz"
|