blob: 27e0d7389f9280d037904967125836321119d6f1 (
plain)
1 # Description: A pythonic binding for the libxml2 and libxslt libraries.
2 # URL: http://codespeak.net/lxml/
3 # Maintainer: Danny Rawlins, monster dot romster at gmail dot com
4 # Packager: Danny Rawlins, monster dot romster at gmail dot com
5 # Depends on: libxml2 libxslt setuptools cython
6
7 name=lxml
8 version=2.2.8
9 release=1
10 source=(http://codespeak.net/lxml/$name-$version.tgz)
11
12 build() {
13 cd $name-$version
14 python setup.py install --root $PKG
15 }
|