blob: 1e6e075fcaa813d7848a0312414253bc49b9086a (
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 # Packager: Danny Rawlins, crux at romster dot me
5 # Depends on: beautifulsoup4 cssselect cython html5lib-python libxslt
6
7 name=lxml
8 version=3.4.4
9 release=1
10 source=(http://lxml.de/files/$name-$version.tgz)
11
12 build() {
13 cd $name-$version
14 /usr/bin/python setup.py build
15 /usr/bin/python setup.py install --root $PKG
16 }
|