blob: b867202cb01b2d93a8176de40e4270fed0033d9a (
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
40
41
42
43
44
45
46
47
|
# Maintainer: Victor <v1c70rp@gmail.com>
# Contributor: Techcable <Techcable at techcable dot net>
pkgname=mathicsscript
pkgver=8.0.0
pkgrel=2
pkgdesc="A more advanced command-line interface to Mathics."
arch=("any")
url="https://mathics.org/"
license=('GPL3')
depends=("mathics>=8.0.0"
"mathics-scanner>=1.4.1"
"python-click"
"python-colorama"
"python-columnize"
"python-networkx"
"python-prompt_toolkit>=3.0.18"
"python-pygments>=2.9.0"
"mathics-pygments>=1.0.2"
"python-term-background>=1.0.1")
makedepends=('python-build' 'python-installer' 'python-wheel' 'python-setuptools' 'python-pytest')
optdepends=(
"python-yaml: Used for admin-tools/make-tables.sh to build JSON tables"
"python-pyqt6: For interactive display of graphs via matplotlib"
"python-cairosvg: For rendering plots and graphs as SVGs via matplotlib"
"python-cson: for xasy"
"python-matplotlib: For rendering SVG plots"
)
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/${pkgver}.tar.gz")
source=("$pkgname-$pkgver.tar.gz::https://github.com/Mathics3/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz")
sha256sums=('84a9dc55580d07a9616d7549745583086a5de75ee25cb5f68ae5aab44e1a518b')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
python -m build --wheel --no-isolation
}
check() {
cd "${srcdir}/${pkgname}-${pkgver}"
export PYTHONPATH="."
pytest test
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|