diff options
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..ca3fb8007517 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,23 @@ +# Maintainer: restitux <restitux@ohea.xyz> + +_pkgname=av +pkgname=python-$_pkgname-bin +pkgver=14.1.0 +pkgrel=1 +pkgdesc="Pythonic bindings for FFmpeg's libraries (binary package)" +arch=('x86_64') +url="https://pyav.basswood-io.com/docs/stable/" +license=('BSD-3-Clause') +provides=('python-av') +conflicts=('python-av' 'python-av-git') +depends=('ffmpeg' 'python' 'python-numpy' 'python-pillow') +makedepends=('python-installer') +_py=cp313 +_wheel_name=${_pkgname//-/_}-$pkgver-$_py-${_py}-manylinux_2_17_$arch.manylinux2014_$arch.whl +source=(https://files.pythonhosted.org/packages/$_py/${_pkgname::1}/$_pkgname/$_wheel_name) + +sha256sums=('222303728d59edfbc241d7e944d5479d3bdfe98d33574a5e60aa7a23d54568fa') + +package() { + python -m installer --destdir="$pkgdir" $_wheel_name +} |