19 lines
484 B
Plaintext
19 lines
484 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: python-beautifulsoup4 python-cssselect python-cython python-html5lib libxslt
|
|
|
|
name=python-lxml
|
|
version=4.5.0
|
|
release=1
|
|
source=(https://lxml.de/files/${name#*-}-$version.tgz)
|
|
|
|
build() {
|
|
cd ${name#*-}-$version
|
|
|
|
/usr/bin/python setup.py build
|
|
|
|
/usr/bin/python setup.py install \
|
|
--prefix=/usr --root=$PKG --optimize=1
|
|
}
|