52 lines
1.0 KiB
Plaintext
52 lines
1.0 KiB
Plaintext
# -*- rpm-spec -*-
|
|
|
|
%define _extra_release %{?extra_release:%{extra_release}}
|
|
|
|
Name: @PACKAGE@
|
|
Version: @VERSION@
|
|
Release: 1%{_extra_release}
|
|
Summary: GNOME Virtual Machine Manager
|
|
|
|
Group: Applications/Emulators
|
|
License: GPL v2+
|
|
URL: http://harp.boston.redhat.com/olpcdev/tools/qemu-admin
|
|
Source0: %{name}-%{version}.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
Requires: python
|
|
Requires: pygtk2 >= 1.99.12-6
|
|
Requires: gnome-python2-gconf >= 1.99.11-7
|
|
Requires: libvirt-python >= 0.0.6
|
|
Requires: python-matplotlib
|
|
|
|
BuildArchitectures: noarch
|
|
|
|
%description
|
|
GNOME Virtual Machine Manager provides a graphical tool for administering
|
|
virtual machines managed via libvirt.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
/usr/bin/%{name}
|
|
/usr/share/%{name}/*
|
|
/usr/share/applications/%{name}.desktop
|
|
|
|
%changelog
|
|
* Wed Mar 29 2006 <berrange@redhat.com> - 0.0.1-1
|
|
- Initial RPM build
|