20 lines
551 B
Plaintext
Raw Normal View History

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/
# Maintainer: John McQuah, jmcquah at disroot dot org
2019-08-08 23:41:36 +10:00
# Depends on: python3-beautifulsoup4 python3-cssselect python3-cython python3-html5lib libxslt
name=python3-lxml
2021-03-22 18:35:45 +11:00
_name=${name#*-}
2023-07-08 07:21:37 -04:00
version=4.9.3
2019-08-08 23:41:36 +10:00
release=1
source=(https://github.com/$_name/$_name/releases/download/$_name-$version/$_name-$version.tar.gz)
2019-08-08 23:41:36 +10:00
build() {
cd $_name-$version
2019-08-08 23:41:36 +10:00
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install \
--prefix=/usr --root=$PKG --optimize=1
}