1
0
mirror of synced 2026-01-20 17:38:02 +00:00

2007-07-25 22:43:01 by steve

Added .spec file for producing .rpm files.
  From: Gordon Messmer.
This commit is contained in:
steve 2007-07-25 22:43:01 +00:00
parent f37c0c5dbd
commit 51634ea3c2
2 changed files with 52 additions and 0 deletions

View File

@ -39,6 +39,9 @@ Contributions
- Improved binary detection and good suggestions.
- Better portability for non-bash shells.
Gordon Messmer <gmessmer [at] edu.washington.u>
- Supplied .spec file for building .rpm packages.
Walter Reiner <walter [at] at.wreiner>
- Provided --image-dev + --swap-dev patch.

49
misc/xen-tools.spec Normal file
View File

@ -0,0 +1,49 @@
Name: xen-tools
Version: 3.6
Release: 1%{?dist}
Summary: Scripts used to create new Xen domains
Group: Applications/Emulators
License: GPLv2 or Artistic
URL: http://xen-tools.org/software/xen-tools/
Source0: http://xen-tools.org/software/xen-tools/xen-tools-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
Requires: perl perl-Text-Template perl-Config-IniFiles perl-Expect
AutoReqProv: no
%description
xen-tools is a collection of simple perl scripts which allow you to
easily create new guest Xen domains.
%prep
%setup -q
%build
%install
rm -rf $RPM_BUILD_ROOT
make install prefix=$RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc
/etc/xen-tools
/etc/bash_completion.d/*
/usr/bin/*
/usr/share/man/man8/*
/usr/lib/xen-tools
%changelog
* Wed Jul 25 2007 Gordon Messmer <gmessmer@ee.washington.edu>
- Initial build