blob: 8ad9a73584ebe85833126f2b7cf7c6d5967cfbb3 (
plain)
1 # Description: Python implementation of John Gruber's Markdown
2 # URL: https://python-markdown.github.io/
3 # Maintainer: Aaron Ball, nullspoon at oper dot io
4 # Depends on: python3-importlib-metadata python3-build python3-installer python3-setuptools python3-wheel
5
6 name=python3-markdown
7 version=3.6
8 release=1
9 source=("https://files.pythonhosted.org/packages/source/M/Markdown/Markdown-${version}.tar.gz")
10
11 build() {
12 cd "Markdown-${version}"
13 python3 -m build -wn
14 python3 -m installer --d "${PKG}" dist/*.whl
15 }
|