Autogenerated commit at 2023-11-29 10:45:48.269686

This commit is contained in:
ahriman 2023-11-29 10:45:48 +00:00
parent d5d53afd6c
commit 21c9b7b129

31
python-aaf2/PKGBUILD Normal file
View File

@ -0,0 +1,31 @@
# Maintainer: Antonio Rojas <arojas@archlinux.org>
pkgname=python-aaf2
pkgver=1.7.1
pkgrel=1
pkgdesc='Read and write Advanced Authoring Format (AAF) files'
url='http://pyaaf.readthedocs.io/'
license=(MIT)
arch=(any)
depends=(
python
)
makedepends=(
python-build
python-installer
python-setuptools
python-wheel
)
source=(https://pypi.python.org/packages/source/p/pyaaf2/pyaaf2-$pkgver.tar.gz)
sha256sums=('e18e5a84bca4ea18c1b9e8384958e2f6d296195c901a448f71f830b22b89c225')
build() {
cd pyaaf2-$pkgver
python -m build --wheel --no-isolation
}
package() {
cd pyaaf2-$pkgver
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
}