mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
28 lines
991 B
Bash
28 lines
991 B
Bash
# Maintainer: arielzn <arielzn@riseup.net>
|
|
|
|
pkgbase='python-archspec'
|
|
pkgname=('python-archspec')
|
|
_module='archspec'
|
|
pkgver=0.2.3
|
|
pkgrel=1
|
|
pkgdesc="A library for detecting, labeling, and reasoning about microarchitectures"
|
|
url="https://github.com/archspec/archspec"
|
|
depends=('python' 'python-setuptools'
|
|
'python-click>=8.0' 'python-click<9.0'
|
|
'python-six>=1.13.0' 'python-six<2.0.0')
|
|
makedepends=('cython' 'python-build' 'python-installer' 'python-wheel' 'python-poetry')
|
|
license=('MIT')
|
|
arch=('any')
|
|
source=("https://files.pythonhosted.org/packages/source/${_module::1}/$_module/$_module-$pkgver.tar.gz")
|
|
sha256sums=('d07deb5b6e2ab3b74861e217523d02e69be8522f6e6565f4cc5d2062eb1a5d2c')
|
|
|
|
build() {
|
|
cd "${srcdir}/${_module}-${pkgver}"
|
|
python -m build --wheel --no-isolation
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${_module}-${pkgver}"
|
|
python -m installer --destdir="$pkgdir" dist/*.whl
|
|
install -Dm644 LICENSE-MIT "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
|
|
}
|