18 lines
487 B
Plaintext
18 lines
487 B
Plaintext
# Description: Python bindings for the XML library version 2
|
|
# URL: http://xmlsoft.org/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: python3-setuptools libxml2
|
|
|
|
name=python3-libxml2
|
|
version=2.10.2
|
|
release=2
|
|
source=(https://download.gnome.org/sources/libxml2/${version:0:4}/libxml2-$version.tar.xz)
|
|
|
|
build() {
|
|
cd libxml2-$version
|
|
./configure --prefix=/usr --sysconfdir=/etc
|
|
cd python
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --root=$PKG
|
|
}
|