Date: Wednesday, August 31, 2022 @ 21:51:23 Author: arojas Revision: 1289549
New sagemath dependency Added: python-database-cubic-hecke/ python-database-cubic-hecke/trunk/ python-database-cubic-hecke/trunk/PKGBUILD ----------+ PKGBUILD | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) Added: python-database-cubic-hecke/trunk/PKGBUILD =================================================================== --- python-database-cubic-hecke/trunk/PKGBUILD (rev 0) +++ python-database-cubic-hecke/trunk/PKGBUILD 2022-08-31 21:51:23 UTC (rev 1289549) @@ -0,0 +1,24 @@ +# Maintainer: Antonio Rojas <[email protected]> + +_pipname=database_cubic_hecke +pkgname=python-${_pipname//_/-} +pkgver=2022.4.4 +pkgrel=1 +pkgdesc='Representations of the cubic Hecke algebra on 4 strands as Python dictionaries' +arch=(any) +url='https://github.com/soehms/database_cubic_hecke' +license=(GPL) +depends=(python) +makedepends=(python-build python-installer python-setuptools-scm python-wheel) +source=(https://pypi.io/packages/source/d/$_pipname/$_pipname-$pkgver.tar.gz) +sha256sums=('553654a4ce987a277fe956a9a450d738bd1f58b96c45499075e28f2bca927ae9') + +build() { + cd $_pipname-$pkgver + python -m build --wheel --no-isolation +} + +package() { + cd $_pipname-$pkgver + python -m installer --destdir="$pkgdir" dist/*.whl +}
