2021-06-14 19:51:51 +00:00
|
|
|
# Description: Markdown to reStructuredText converter
|
|
|
|
# URL: https://github.com/miyakogi/m2r
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2023-07-14 23:35:38 +02:00
|
|
|
# Depends on: python3-build python3-docutils python3-installer python3-mistune0 python3-wheel
|
2021-06-14 19:51:51 +00:00
|
|
|
|
|
|
|
name=python3-m2r
|
2022-11-19 14:56:23 +00:00
|
|
|
version=0.3.1
|
|
|
|
release=1
|
2023-07-14 23:35:38 +02:00
|
|
|
source=(https://github.com/miyakogi/m2r/archive/v$version/$name-$version.tar.gz
|
|
|
|
2003_mistune0.patch)
|
2021-06-14 19:51:51 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd m2r-$version
|
2023-07-14 23:35:38 +02:00
|
|
|
|
|
|
|
patch -Np1 -i $SRC/2003_mistune0.patch
|
|
|
|
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
2021-06-14 19:51:51 +00:00
|
|
|
}
|