Changes of Revision 3
[-] | Added | rubygem-rake.spec |
x 1
2 +# 3 +# spec file for package rubygem-rake (Version 0.7.3) 4 +# 5 +# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. 6 +# This file and all modifications and additions to the pristine 7 +# package are under the same license as the package itself. 8 +# 9 +# Please submit bugfixes or comments via http://bugs.opensuse.org/ 10 +# 11 + 12 +# norootforbuild 13 + 14 +Name: rubygem-rake 15 +%define mod_name rake 16 +# 17 +Version: 0.7.3 18 +Release: 1 19 +# 20 +License: X11/MIT 21 +Group: Development/Languages/Ruby 22 +# 23 +BuildRoot: %{_tmppath}/%{name}-%{version}-build 24 +BuildRequires: rubygems_with_buildroot_patch 25 +Requires: rubygems >= 0.8.11 26 +# 27 +URL: http://rake.rubyforge.org/ 28 +# http://rubyforge.org/projects/rake/ 29 +Source: http://rubyforge.org/frs/download.php/19878/rake-0.7.3.gem 30 +# 31 +Summary: Ruby Make 32 + 33 +%description 34 +This package contains Rake, a simple ruby build program with 35 +capabilities similar to make. 36 + 37 +Rake has the following features: 38 + 39 +* Rakefiles (rake's version of Makefiles) are completely defined in 40 + standard Ruby syntax. No XML files to edit. No quirky Makefile 41 + syntax to worry about (is that a tab or a space?) 42 + 43 +* Users can specify tasks with prerequisites. 44 + 45 +* Rake supports rule patterns to sythesize implicit tasks. 46 + 47 +* Flexible FileLists that act like arrays but know about 48 + manipulating file names and paths. 49 + 50 +* A library of prepackaged tasks to make building rakefiles easier. 51 + 52 + 53 + 54 +Authors: 55 +-------- 56 + Jim Weirich <jim@weirichhouse.org> 57 + 58 +%prep 59 + 60 +%build 61 + 62 +%install 63 +gem install --build-root=%{buildroot} %{S:0} 64 + 65 +%clean 66 +%{__rm} -rf %{buildroot} 67 + 68 +%files 69 +%defattr(-,root,root,-) 70 +%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_name}-%{version}.gem 71 +%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/ 72 +%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_name}-%{version}.gemspec 73 +%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_name}-%{version}/ 74 +%{_bindir}/%{mod_name} 75 + 76 +%changelog 77 |