blob: 9369567dddb87a9f4c00741392bb8a43ec3321cc (
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.4
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-2.3.4-py2.7.egg-info/*
16 rmdir $PKG/usr/lib/python*/site-packages/*.egg-info
17 }
|