48 lines
1.7 KiB
Bash
48 lines
1.7 KiB
Bash
# Template file for 'virt-manager'
|
|
pkgname=virt-manager
|
|
version=4.1.0
|
|
revision=3
|
|
build_style=python3-module
|
|
pycompile_dirs="/usr/share/${pkgname}/virtManager"
|
|
hostmakedepends="gettext python3-docutils python3-setuptools"
|
|
depends="virt-manager-tools>=${version}_${revision} libvirt-glib
|
|
gtk-vnc spice-gtk gtksourceview4 dconf vte3 gir-freedesktop"
|
|
_coredeps="python3-gobject libvirt-python3 libosinfo
|
|
libxml2-python3 python3-requests cdrtools"
|
|
checkdepends="python3-pytest cpio xorriso ${_coredeps}"
|
|
short_desc="User interface for managing virtual machines"
|
|
maintainer="Andrea Brancaleoni <abc@pompel.me>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://virt-manager.org"
|
|
changelog="https://raw.githubusercontent.com/virt-manager/virt-manager/master/NEWS.md"
|
|
distfiles="https://releases.pagure.org/virt-manager/virt-manager-${version}.tar.gz"
|
|
checksum=950681d7b32dc61669278ad94ef31da33109bf6fcf0426ed82dfd7379aa590a2
|
|
python_version=3
|
|
|
|
do_install() {
|
|
# make_install_args can't be used because --no-* has to be specified
|
|
# before the install argument
|
|
./setup.py \
|
|
--no-update-icon-cache --no-compile-schemas \
|
|
install --root=${DESTDIR}
|
|
}
|
|
|
|
virt-manager-tools_package() {
|
|
short_desc="Programs to create and clone virtual machines"
|
|
depends="${_coredeps} python3-argcomplete"
|
|
pycompile_dirs="/usr/share/${sourcepkg}/virtinst"
|
|
python_version=3
|
|
pkg_install() {
|
|
vmove usr/bin/virt-clone
|
|
vmove usr/bin/virt-install
|
|
vmove usr/bin/virt-xml
|
|
vmove usr/share/man/man1/virt-install.1
|
|
vmove usr/share/man/man1/virt-clone.1
|
|
vmove usr/share/man/man1/virt-xml.1
|
|
vmove usr/share/virt-manager/virtinst
|
|
vmove usr/share/bash-completion/completions/virt-install
|
|
vmove usr/share/bash-completion/completions/virt-clone
|
|
vmove usr/share/bash-completion/completions/virt-xml
|
|
}
|
|
}
|