]> git.pld-linux.org Git - packages/linux-kvm.git/commitdiff
- initial
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Tue, 26 Jul 2011 07:02:49 +0000 (07:02 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    linux-kvm.spec -> 1.1

linux-kvm.spec [new file with mode: 0644]

diff --git a/linux-kvm.spec b/linux-kvm.spec
new file mode 100644 (file)
index 0000000..4143ed0
--- /dev/null
@@ -0,0 +1,42 @@
+# TODO: use linux tarball when kernel 3.1 is released
+%define        snap    20110726
+Summary:       Native Linux KVM tool
+Name:          linux-kvm
+Version:       3.1
+Release:       0.%{snap}.1
+License:       GPL v2
+Group:         Applications/System
+# git://github.com/penberg/linux-kvm.git
+Source0:       %{name}-%{version}-%{snap}.tar.bz2
+# Source0-md5: b0b94a75d915f70ae14a089ddc7d7abb
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+The goal of this tool is to provide a clean, from-scratch, lightweight
+KVM host tool implementation that can boot Linux guest images (just a
+hobby, won't be big and professional like QEMU) with no BIOS
+dependencies and with only the minimal amount of legacy device
+emulation.
+
+%prep
+%setup -q -n %{name}
+
+%build
+%{__make} -C tools/kvm \
+       CC="%{__cc} %{rpmcppflags} %{rpmcflags} %{rpmldflags}" \
+       V=1
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+install -d $RPM_BUILD_ROOT%{_sbindir}
+
+install tools/kvm/kvm $RPM_BUILD_ROOT%{_sbindir}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc tools/kvm/Documentation/* tools/kvm/README
+%attr(755,root,root) %{_sbindir}/kvm
This page took 0.132186 seconds and 4 git commands to generate.