19 lines
489 B
Plaintext
Raw Normal View History

2019-03-16 23:41:53 +11:00
# Description: Implements a XML/HTML/XHTML Markup safe string for Python.
# URL: http://pypi.python.org/pypi/MarkupSafe
2023-08-10 17:11:29 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
2019-03-16 23:41:53 +11:00
# Depends on: python3-setuptools
name=python3-markupsafe
2024-10-22 18:58:25 +02:00
version=3.0.2
2021-06-14 12:39:31 +10:00
release=1
2024-10-09 23:19:13 +02:00
source=(https://pypi.io/packages/source/m/markupsafe/markupsafe-$version.tar.gz)
2019-03-16 23:41:53 +11:00
build() {
2024-10-09 23:19:13 +02:00
cd markupsafe-$version
2019-03-16 23:41:53 +11:00
2023-08-10 17:11:29 +02:00
/usr/bin/python3 setup.py build
2019-03-16 23:41:53 +11:00
2023-08-10 17:11:29 +02:00
/usr/bin/python3 setup.py install --prefix=/usr \
--root=$PKG --optimize=1
2019-03-16 23:41:53 +11:00
}