|
@@ -0,0 +1,51 @@
|
|
|
|
+Summary: Creates chroot environments for Fedora and CentOS
|
|
|
|
+Summary(ja): Fedora や CentOS 等の chroot 環境を構築するツール
|
|
|
|
+Name: rinse
|
|
|
|
+Version: 1.7
|
|
|
|
+Release: 1%{?_dist_release}
|
|
|
|
+License: Perl
|
|
|
|
+Group: Development/Tools
|
|
|
|
+Source: rinse-1.7.tar.gz
|
|
|
|
+URL: http://xen-tools.org/software/rinse/
|
|
|
|
+
|
|
|
|
+BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+%description
|
|
|
|
+The rinse tool was born out of a frustration with the currently available
|
|
|
|
+solutions for installing minimal copies of RPM-based distributions.
|
|
|
|
+The need to perform simple chroot() installations of other distributions is
|
|
|
|
+not common, but the ability to do such a thing is very useful when it comes
|
|
|
|
+to testing new tools, and working towards the creation of new Xen guests.
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+%prep
|
|
|
|
+%setup -q
|
|
|
|
+
|
|
|
|
+%build
|
|
|
|
+%__make
|
|
|
|
+
|
|
|
|
+%install
|
|
|
|
+rm -rf $RPM_BUILD_ROOT
|
|
|
|
+make PREFIX=$RPM_BUILD_ROOT install
|
|
|
|
+
|
|
|
|
+%clean
|
|
|
|
+rm -rf $RPM_BUILD_ROOT
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+%files
|
|
|
|
+%defattr(-,root,root)
|
|
|
|
+%doc BUGS INSTALL README
|
|
|
|
+%{_sysconfdir}/bash_completion.d/*
|
|
|
|
+%dir %{_sysconfdir}/rinse
|
|
|
|
+%{_sysconfdir}/rinse/*
|
|
|
|
+%{_sbindir}/*
|
|
|
|
+%dir %{_prefix}/lib/rinse
|
|
|
|
+%{_prefix}/lib/rinse/*
|
|
|
|
+%{_var}/cache/rinse
|
|
|
|
+%{_mandir}/man8/*
|
|
|
|
+
|
|
|
|
+%changelog
|
|
|
|
+* Tue Feb 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7-1
|
|
|
|
+- initial build for Vine Linux
|
|
|
|
+
|