2006-03-27 17:13:38 +00:00
|
|
|
# Description: Python bindings for the XML library version 2
|
|
|
|
# URL: http://xmlsoft.org/
|
2011-02-02 13:44:37 +01:00
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2008-09-02 11:38:45 +02:00
|
|
|
# Depends on: python libxml2
|
2006-03-27 17:13:38 +00:00
|
|
|
|
|
|
|
name=libxml2-python
|
2015-11-20 12:32:46 +01:00
|
|
|
version=2.9.3
|
2013-04-21 11:56:49 +02:00
|
|
|
release=1
|
2006-10-26 08:21:05 +02:00
|
|
|
source=(ftp://xmlsoft.org/libxml2/libxml2-$version.tar.gz \
|
2006-03-27 17:13:38 +00:00
|
|
|
$name-config.patch)
|
|
|
|
|
|
|
|
build () {
|
|
|
|
cd libxml2-$version
|
2010-11-05 11:53:39 +01:00
|
|
|
|
2008-01-12 10:43:30 +01:00
|
|
|
patch -p1 -i $SRC/$name-config.patch
|
2012-01-31 12:35:21 +01:00
|
|
|
|
2006-03-27 17:13:38 +00:00
|
|
|
./configure --prefix=/usr
|
|
|
|
cd python
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2012-10-29 17:53:41 +01:00
|
|
|
|
|
|
|
python -m compileall $PKG/usr/lib/python2.7/
|
|
|
|
|
2012-01-31 12:35:21 +01:00
|
|
|
rm $PKG/usr/lib/python2.7/site-packages/libxml2mod.{a,la}
|
2006-03-27 17:13:38 +00:00
|
|
|
rm -r $PKG/usr/share
|
|
|
|
}
|