2019-08-08 23:41:36 +10:00
|
|
|
# Description: A pythonic binding for the libxml2 and libxslt libraries.
|
2020-06-01 15:45:48 +00:00
|
|
|
# URL: https://lxml.de/
|
2019-08-08 23:41:36 +10:00
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
|
|
# Depends on: python3-beautifulsoup4 python3-cssselect python3-cython python3-html5lib libxslt
|
|
|
|
|
|
|
|
name=python3-lxml
|
2020-12-31 12:40:32 +00:00
|
|
|
version=4.6.2
|
2019-08-08 23:41:36 +10:00
|
|
|
release=1
|
2020-12-31 12:40:32 +00:00
|
|
|
source=(https://pypi.python.org/packages/source/l/lxml/lxml-$version.tar.gz)
|
|
|
|
|
2019-08-08 23:41:36 +10:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${name#*-}-$version
|
|
|
|
|
|
|
|
/usr/bin/python3 setup.py build
|
|
|
|
|
|
|
|
/usr/bin/python3 setup.py install \
|
|
|
|
--prefix=/usr --root=$PKG --optimize=1
|
|
|
|
}
|