diff options
author | Aaron Ball <nullspoon@oper.io> | 2023-04-03 19:12:54 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2023-04-03 19:12:54 -0600 |
commit | 6842c73edbf9c488fdc0e746202c4fdd9f485539 (patch) | |
tree | d9fa6ba341fc1eeb61b5de804b40464fd04a48bd /python3-markdown/Pkgfile | |
download | crux-ports-web-6842c73edbf9c488fdc0e746202c4fdd9f485539.tar.gz crux-ports-web-6842c73edbf9c488fdc0e746202c4fdd9f485539.tar.xz |
Initial commit of all dependencies for latest epiphany
This includes gi-docgen, python3 markdown, smartypants, and typogrify,
and webkitgtk API 6.0 from unstable release 2.41.1.
This repo will exist to more easily release the absolute latest of
Epiphany, WebKit, and relevant dependencies not already present in the
stock repos for Crux.
Diffstat (limited to 'python3-markdown/Pkgfile')
-rw-r--r-- | python3-markdown/Pkgfile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/python3-markdown/Pkgfile b/python3-markdown/Pkgfile new file mode 100644 index 0000000..eeb0a70 --- /dev/null +++ b/python3-markdown/Pkgfile @@ -0,0 +1,15 @@ +# Description: Python implementation of John Gruber's Markdown +# URL: https://python-markdown.github.io/ +# Maintainer: Aaron Ball, nullspoon at oper dot io +# Depends on: python3-importlib-metadata python3-build python3-installer python3-setuptools python3-wheel + +name=python-markdown +version=3.4.1 +release=1 +source=("https://files.pythonhosted.org/packages/source/M/Markdown/Markdown-${version}.tar.gz") + +build() { + cd "Markdown-${version}" + python3 -m build -wn + python3 -m installer --d "${PKG}" dist/*.whl +} |