blob: 259c5df3a9d2c96cab4cdec849b08a60376f6e65 (
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-build python3-installer python3-setuptools python3-wheel
5
6 name=python3-markdown
7 version=3.7
8 release=1
9 source=("https://github.com/Python-Markdown/markdown/archive/refs/tags/${version}.tar.gz")
10
11 build() {
12 cd "markdown-${version}"
13 python3 -m build -wn
14 python3 -m installer --d "${PKG}" dist/*.whl
15 }
|