compat-32/libxml2-python-32/Pkgfile

29 lines
673 B
Plaintext
Raw Normal View History

# Description: Python bindings for the XML library version 2
2014-10-18 13:59:29 +02:00
# URL: http://xmlsoft.org/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
2014-10-18 13:59:29 +02:00
# Depends on: python-32 libxml2-32 libxml2-python
name=libxml2-python-32
2014-10-18 13:59:29 +02:00
version=2.9.2
release=1
2013-05-29 05:25:53 +02:00
source=(ftp://xmlsoft.org/libxml2/libxml2-$version.tar.gz
2014-10-18 13:59:29 +02:00
libxml2-python-config.patch)
2014-10-18 13:59:29 +02:00
build() {
cd libxml2-$version
2012-12-24 11:32:57 +01:00
2014-10-18 13:59:29 +02:00
patch -p1 -i $SRC/libxml2-python-config.patch
2014-10-18 13:59:29 +02:00
./configure --prefix=/usr --libdir=/usr/lib32
cd python
2012-12-24 11:32:57 +01:00
2014-10-18 13:59:29 +02:00
make
make DESTDIR=$PKG install
2013-05-29 05:25:53 +02:00
2014-10-18 13:59:29 +02:00
rm $PKG/usr/lib32/python2.7/site-packages/libxml2mod.{a,la}
rm -r $PKG/usr/share/doc
rmdir $PKG/usr/share
2013-10-27 09:05:29 +01:00
2014-10-18 13:59:29 +02:00
python -mcompileall $PKG/usr/lib32/python2.7/
}