blob: 5a13a5d9264f250121c0e0841e1f82fe5ed20e19 (
plain)
1 # Description: A pythonic binding for the libxml2 and libxslt libraries.
2 # URL: http://lxml.de/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python-beautifulsoup4 python-cssselect python-cython python-html5lib libxslt
5
6 name=python-lxml
7 version=4.2.4
8 release=1
9 source=(https://lxml.de/files/${name#*-}-$version.tgz)
10
11 build() {
12 cd ${name#*-}-$version
13
14 /usr/bin/python setup.py build
15
16 /usr/bin/python setup.py install \
17 --prefix=/usr --root=$PKG --optimize=1
18 }
|