mmap-vl.spec 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. Summary: The Mmap class implement memory-mapped file objects for Ruby
  2. Name: mmap
  3. Version: 0.2.6
  4. Release: 1%{?_dist_release}
  5. URL: ftp://moulon.inra.fr/pub/ruby/
  6. Source0: ftp://moulon.inra.fr/pub/ruby/%{name}-%{version}.tar.gz
  7. License: Ruby's
  8. Group: Development/Libraries
  9. BuildRoot: %{_tmppath}/%{name}-root
  10. BuildRequires: ruby
  11. Requires: ruby
  12. %description
  13. The Mmap class implement memory-mapped file objects for Ruby
  14. %prep
  15. %setup -q
  16. %build
  17. ruby extconf.rb
  18. #make sitearchdir=%{rarchdir}
  19. make
  20. make test
  21. %install
  22. rm -rf %{buildroot}
  23. make DESTDIR=%{buildroot} sitearchdir=%{buildroot}%{rarchdir} install
  24. %clean
  25. rm -rf %{buildroot}
  26. %files
  27. %defattr(-,root,root)
  28. %doc doc Changes README.en mmap.html mmap.rd
  29. %{rarchdir}/mmap.so
  30. %changelog
  31. * Sat Oct 04 2008 Shu KONNO <owa@bg.wakwak.com> 0.2.6-1vl5
  32. - applied new versioning policy
  33. * Sat Dec 29 2006 Shu KONNO <owa@bg.wakwak.com> 0.2.6-0vl1
  34. - new upstream release
  35. - dropt option sitearchdir to make
  36. * Tue Oct 7 2003 IWAI, Masaharu <iwai@alib.jp> 0.2.2-0vl1
  37. - new upstream release
  38. - build with ruby-1.8.0
  39. * Wed Apr 23 2003 IWAI Masaharu <iwai@alib.jp> 0.2.0-0vl1
  40. - first release for Vine Linux
  41. * Sun Jan 19 2003 IWAI Masaharu <iwai@alib.jp> 0.2.0-1
  42. - Initial build.