mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-09 11:32:26 +01:00
this is only a partial rebuild, including stuff that i built on my personal machine with python 3.12.2; might fail with 3.12.3
34 lines
847 B
Plaintext
34 lines
847 B
Plaintext
# Contributor: Jakob Meier <comcloudway@ccw.icu>
|
|
# Maintainer: Jakob Meier <comcloudway@ccw.icu>
|
|
pkgname=py3-latex2mathml
|
|
pkgver=3.77.0
|
|
pkgrel=1
|
|
pkgdesc="Pure Python library for LaTeX to MathML conversion"
|
|
url="https://pypi.org/project/latex2mathml/"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3"
|
|
makedepends="
|
|
py3-gpep517
|
|
py3-poetry-core
|
|
"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://github.com/roniemartinez/latex2mathml/archive/$pkgver/latex2mathml-$pkgver.tar.gz"
|
|
builddir="$srcdir/latex2mathml-$pkgver"
|
|
options="!check"
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" \
|
|
dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
1f7b7f383e75017720d07518b665ffba0b9a6803f771ece64245b6cc12803f0b2ec5aa9a79c030a1735aa09225825edd14a522d90e65bc52c28c8bd4b7066e31 latex2mathml-3.77.0.tar.gz
|
|
"
|