blob: f288929213ecc2a3f2bdf157a6897e66eec67ac6 (
plain)
1 # Description: Python bindings for the XML library version 2
2 # URL: http://xmlsoft.org/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: python libxml2
5
6 name=libxml2-python
7 version=2.9.4-68
8 release=1
9 #source=(ftp://xmlsoft.org/libxml2/libxml2-$version.tar.gz \
10 source=(http://crux.s3.amazonaws.com/dist/libxml2-$version.tar.xz \
11 $name-config.patch)
12
13 build () {
14 cd libxml2-$version
15
16 patch -p1 -i $SRC/$name-config.patch
17
18 ./configure --prefix=/usr
19 cd python
20 make
21 make DESTDIR=$PKG install
22
23 python -m compileall $PKG/usr/lib/python2.7/
24
25 rm $PKG/usr/lib/python2.7/site-packages/libxml2mod.{a,la}
26 rm -r $PKG/usr/share
27 }
|