blob: 65e3bbb85216f19f1324bd84967a640b6f3fc35a (
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: 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 /usr/bin/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 }
|