16 lines
412 B
Plaintext
16 lines
412 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: beautifulsoup4 cssselect cython html5lib-python libxslt
|
|
|
|
name=lxml
|
|
version=4.2.1
|
|
release=1
|
|
source=(http://lxml.de/files/$name-$version.tgz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
/usr/bin/python setup.py build
|
|
/usr/bin/python setup.py install --root $PKG
|
|
}
|