blob: 5d0335e31b2f1cbd46ef5019d9db740d7ea048cb (
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: python3-setuptools libxml2
5
6 name=python3-libxml2
7 version=2.10.3
8 release=1
9 source=(https://download.gnome.org/sources/libxml2/${version:0:4}/libxml2-$version.tar.xz)
10
11 build() {
12 cd libxml2-$version
13 ./configure --prefix=/usr --sysconfdir=/etc
14 cd python
15 /usr/bin/python3 setup.py build
16 /usr/bin/python3 setup.py install --root=$PKG
17 }
|