16 lines
378 B
Plaintext
16 lines
378 B
Plaintext
# Description: Python bindings for libvirt
|
|
# URL: https://libvirt.org/
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: python3 libvirt
|
|
|
|
name=libvirt-python
|
|
version=9.7.0
|
|
release=1
|
|
source=(https://libvirt.org/sources/python/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --root $PKG
|
|
}
|