mirror of
https://abf.rosa.ru/djam/qemoo.git
synced 2025-02-24 17:43:01 +00:00
36 lines
655 B
RPMSpec
36 lines
655 B
RPMSpec
Summary: Wrapper for qemu to easy run guest machines
|
|
Name: qemoo
|
|
Version: 0.1
|
|
Release: 1
|
|
License: GPLv2+
|
|
Group: System/Base
|
|
Url: https://abf.io/import/qemoo
|
|
Source0: %{name}
|
|
Source1: %{name}.cfg
|
|
|
|
Requires: qemu
|
|
Requires: qemu-img
|
|
Requires: edk2-ovmf
|
|
|
|
Buildarch: noarch
|
|
|
|
%description
|
|
Wrapper for qemu to easy run guest machine
|
|
from iso, img, /dev/sd?
|
|
supported installation from iso to new qcow2 image
|
|
|
|
%prep
|
|
|
|
%build
|
|
|
|
%install
|
|
mkdir -p %{buildroot}%{_bindir}/ %{buildroot}/%{_sysconfdir}
|
|
|
|
install -m 644 %{SOURCE1} %{buildroot}/%{_sysconfdir}/
|
|
install -m 755 %{SOURCE0} %{buildroot}/%{_bindir}
|
|
|
|
%files
|
|
%{_bindir}/%{name}
|
|
%{_sysconfdir}/%{name}.cfg
|
|
|
|
|