blob: 89bfa12d3468695d92aa292c8a2a047adffc28a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Maintainer: Bipin Kumar <kbipinkumar@pm.me>
pkgname=python-isal
_module=${pkgname#python-}
pkgver=1.7.1
pkgrel=1
pkgdesc='Faster zlib and gzip compatible compression and decompression by providing python bindings for the ISA-L library'
arch=('x86_64')
url="https://github.com/pycompression/python-isal"
license=('PSF')
depends=(
'python'
'glibc'
)
makedepends=(
'python-build'
'python-installer'
'python-wheel'
'python-nose'
'nasm'
'python-sphinx'
'python-sphinx_rtd_theme'
'python-sphinx-argparse'
'python-versioningit'
)
options=(!emptydirs)
source=("https://files.pythonhosted.org/packages/source/${_module::1}/$_module/$_module-$pkgver.tar.gz")
sha256sums=('845aeff4ffb3a2ea24bde22b165f99aafb1ee92f5da3930cb23638501e8332c9')
build() {
cd "$_module-$pkgver"
python -m build --wheel --no-isolation
}
package() {
cd "$_module-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 "$srcdir/$_module-$pkgver/LICENSE" -t "$pkgdir/usr/share/licenses/$pkgname"
}
|