mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-31 22:32:14 +01:00
41 lines
887 B
Plaintext
41 lines
887 B
Plaintext
# Contributor:
|
|
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
pkgname=virt-manager
|
|
pkgver=0.9.0
|
|
pkgrel=2
|
|
pkgdesc="GUI for managing virtual machines"
|
|
url="http://virt-manager.et.redhat.com/"
|
|
arch="noarch"
|
|
license="GPL"
|
|
depends="gconf gtk-vnc librsvg libvirt libxml2 py-dbus py-gnome-gconf python
|
|
rarian virtinst vte"
|
|
depends_dev="intltool"
|
|
makedepends="$depends_dev"
|
|
install=
|
|
subpackages="$pkgname-doc"
|
|
source="http://virt-manager.et.redhat.com/download/sources/$pkgname/$pkgname-$pkgver.tar.gz"
|
|
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
prepare() {
|
|
cd "$_builddir"
|
|
# apply patches here
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
md5sums="a10331b467f92f4134a39bf636e04adc virt-manager-0.9.0.tar.gz"
|