17 lines
511 B
Plaintext
17 lines
511 B
Plaintext
# Description: Python implementation of John Gruber's Markdown
|
|
# URL: https://python-markdown.github.io/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-yaml
|
|
|
|
name=python3-markdown
|
|
version=3.6
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/M/Markdown/Markdown-$version.tar.gz)
|
|
|
|
build() {
|
|
cd Markdown-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|