17 lines
558 B
Plaintext
17 lines
558 B
Plaintext
# Description: A fast yet powerful Python Markdown parser with renderers and plugins
|
|
# URL: https://github.com/lepture/mistune
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-build python3-installer python3-wheel
|
|
|
|
name=python3-mistune
|
|
version=3.0.2
|
|
release=1
|
|
source=(https://github.com/lepture/mistune/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd mistune-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|