summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ca3fb80075172a880ca50dde87e9e170cabb9a09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
}