blob: e09dc83c1883804bbdbaeec3fc1c6d2ef0a9b1fa (
plain)
1 # Description: An easy whitelist-based HTML-sanitizing tool
2 # URL: https://pypi.org/project/bleach/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-packaging python3-webencodings
5
6 name=python3-bleach
7 version=5.0.1
8 release=1
9 source=(https://pypi.org/packages/source/b/bleach/bleach-$version.tar.gz)
10
11 build() {
12 cd bleach-$version
13 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install --prefix=/usr \
15 --root=$PKG \
16 -O1 \
17 --skip-build
18 }
|