summaryrefslogtreecommitdiff
path: root/libxml2-python/Pkgfile
blob: 41a34891f4574ec9f81a0a8ea416b367f5227003 (plain)
    1 # Description: Python bindings for the XML library version 2
    2 # URL:         http://xmlsoft.org/
    3 # Maintainer:  Juergen Daubert, jue at crux dot nu
    4 # Depends on:  python libxml2
    5 
    6 name=libxml2-python
    7 version=2.9.8
    8 release=1
    9 source=(ftp://xmlsoft.org/libxml2/libxml2-$version.tar.gz \
   10         $name-config.patch)
   11 
   12 build () {
   13     cd libxml2-$version
   14     
   15     patch -p1 -i $SRC/$name-config.patch
   16     
   17     ./configure --prefix=/usr
   18     cd python
   19     make
   20     make DESTDIR=$PKG install
   21 
   22     python -m compileall $PKG/usr/lib/python2.7/
   23 
   24     rm $PKG/usr/lib/python2.7/site-packages/libxml2mod.{a,la}
   25     rm -r $PKG/usr/share
   26 }

Generated by cgit