compat-32/libxml2-python-32/Pkgfile
2013-05-29 13:26:32 +10:00

31 lines
735 B
Plaintext

# Description: Python bindings for the XML library version 2
# URL: http://xmlsoft.org/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: python-32 libxml2-32 libxml2-python
name=libxml2-python-32
version=2.9.1
release=1
source=(ftp://xmlsoft.org/libxml2/libxml2-$version.tar.gz
libxml2-python-config.patch)
build () {
cd libxml2-$version
patch -p1 -i $SRC/libxml2-python-config.patch
./configure --prefix=/usr --libdir=/usr/lib32
cd python
make
make DESTDIR=$PKG install
mv $PKG/usr/lib $PKG/usr/lib32
rm $PKG/usr/lib32/python2.7/site-packages/libxml2mod.{a,la}
rm -r $PKG/usr/share/doc
rmdir $PKG/usr/share
python -mcompileall $PKG
}