forked from ports/contrib
19 lines
491 B
Plaintext
19 lines
491 B
Plaintext
# Description: A pythonic binding for the libxml2 and libxslt libraries.
|
|
# URL: http://lxml.de/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: python3-beautifulsoup4 python3-cssselect python3-cython python3-html5lib libxslt
|
|
|
|
name=python3-lxml
|
|
version=4.4.1
|
|
release=1
|
|
source=(https://lxml.de/files/${name#*-}-$version.tgz)
|
|
|
|
build() {
|
|
cd ${name#*-}-$version
|
|
|
|
/usr/bin/python3 setup.py build
|
|
|
|
/usr/bin/python3 setup.py install \
|
|
--prefix=/usr --root=$PKG --optimize=1
|
|
}
|