# Description: Python bindings for the XML library version 2
# URL:         http://xmlsoft.org/
# Maintainer:  Jürgen Daubert, juergen dot daubert at t-online dot de
# Depends on:  python, libxml2

name=libxml2-python
version=2.6.30
release=1
source=(ftp://xmlsoft.org/libxml2/libxml2-$version.tar.gz \
        $name-config.patch)

build () {
    cd libxml2-$version
    patch -p1 < $SRC/$name-config.patch
    ./configure --prefix=/usr
    cd python
    make
    make DESTDIR=$PKG install
    rm -r $PKG/usr/share
}
