blob: e666eb2f4acd076a0d060b8ec499b83f849a78b8 (
plain)
1 # Description: A pythonic binding for the libxml2 and libxslt libraries.
2 # URL: http://lxml.de/
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: libxslt cython
6
7 name=lxml
8 version=2.3.5
9 release=1
10 source=(http://lxml.de/files/$name-$version.tgz)
11
12 build() {
13 cd $name-$version
14 python setup.py install --root $PKG
15 rm $PKG/usr/lib/python*/site-packages/lxml-*-py2.7.egg-info/*
16 rmdir $PKG/usr/lib/python*/site-packages/*.egg-info
17 }
|