contrib/python3-soupsieve/Pkgfile

17 lines
485 B
Plaintext
Raw Normal View History

2020-02-12 12:37:22 +01:00
# Description: A CSS4 selector implementation for Beautiful Soup
2021-03-20 05:40:14 +01:00
# URL: https://pypi.python.org/pypi/soupsieve
2020-02-12 12:37:22 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: python3-setuptools
name=python3-soupsieve
2021-03-20 05:40:14 +01:00
_name=${name#*-}
2021-12-11 15:21:42 +01:00
version=2.3.1
2020-02-12 12:37:22 +01:00
release=1
2021-03-20 05:40:14 +01:00
source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$version.tar.gz)
2020-02-12 12:37:22 +01:00
build() {
2021-03-20 05:40:14 +01:00
cd $_name-$version
2020-02-12 12:37:22 +01:00
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --root=$PKG --optimize=1
}