blob: 423871431b6eb0e64c4ad291aa309d64566034e3 (
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
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
pkgname=ore_algebra
pkgver=0.5
pkgrel=1
pkgdesc='An implementation of Ore algebras for Sage'
arch=(x86_64)
url='http://www.risc.jku.at/research/combinat/software/ore_algebra/'
license=(GPL-2.0-only)
depends=(sagemath)
makedepends=(cython
git
python-build
python-installer
python-pkgconfig
python-setuptools
python-wheel)
source=(git+https://github.com/mkauers/ore_algebra#tag=$pkgver)
sha256sums=('880ee5826144e3d37042e053d6d094c2e7219adb0623060a98eb3859336fbf00')
build() {
cd $pkgname
python -m build --wheel --no-isolation
}
package() {
cd $pkgname
python -m installer --destdir="$pkgdir" dist/*.whl
}
|