opt/libxml2-python/Pkgfile

27 lines
620 B
Plaintext
Raw Normal View History

2006-03-27 19:13:38 +02: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 19:13:38 +02: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 19:13:38 +02: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
2006-03-27 19:13:38 +02:00
./configure --prefix=/usr
cd python
make
make DESTDIR=$PKG install
python -m compileall $PKG/usr/lib/python2.7/
rm $PKG/usr/lib/python2.7/site-packages/libxml2mod.{a,la}
2006-03-27 19:13:38 +02:00
rm -r $PKG/usr/share
}