PKGBUILDs/aur/python-imageio/PKGBUILD
graysky 4b6044a4a3 Add aur/python-imageio
This is a dep for aur/stressberry
2023-12-06 16:13:51 -05:00

37 lines
1.3 KiB
Bash

# Maintainer: graysky <therealgraysky AT protonmail DOT com>
# Contributer: Leo Mao <leomaoyw at gmail dot com>
pkgname="python-imageio"
_pkgname="imageio"
pkgver=2.33.0
pkgrel=2
pkgdesc="a Python library that provides an easy interface to read and write a wide range of image data"
arch=('any')
_github="imageio/imageio"
_pypiname="imageio"
url="https://github.com/imageio/imageio"
license=('BSD')
depends=('python-numpy' 'python-pillow')
optdepends=('python-imageio-ffmpeg' 'python-av' 'freeimage' 'python-astropy' 'python-simpleitk' 'python-tifffile')
makedepends=('python-build' 'python-installer' 'python-wheel' 'python-setuptools')
source=("$pkgname-$pkgver.tar.gz::https://github.com/imageio/imageio/archive/v${pkgver}.tar.gz")
sha256sums=('ca7f861a2d39b3719d031077ecd3be8fb07507c1c9747bbd721284ea4ee1cb7a')
build() {
msg "Building Python 3"
cd "$srcdir/${_pkgname}-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "$srcdir/${_pkgname}-${pkgver}"
python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
# remove utilities for downloading binary dependencies
rm $pkgdir/usr/bin/{imageio_download_bin,imageio_remove_bin}
rmdir $pkgdir/usr/bin
}
# vim:set ts=2 sw=2 et:<Paste>