ruby-build-vl.spec 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. %global gitdate 20121111
  2. Summary: rbenv plugin to compile and install ruby
  3. SUmmary(ja): ruby をコンパイルしてインストールするrbenvプラグイン
  4. Name: ruby-build
  5. Version: 0.0.%{gitdate}
  6. Release: 1%{?_dist_release}
  7. License: MIT
  8. Group: Development/Tools
  9. URL: https://github.com/sstephenson/ruby-build
  10. Source0: %{name}-%{version}.tar.xz
  11. Source10: ree-1.8.7-build.patch
  12. Source11: ruby-1.8.7-build.patch
  13. Patch1: ruby-build-1.8.7-build-fix.patch
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  15. BuildArch: noarch
  16. Requires: gcc
  17. Requires: zlib-devel
  18. Requires: readline-devel
  19. Requires: openssl-devel
  20. %description
  21. ruby-build provides a simple way to compile and install
  22. different versions of Ruby on UNIX-like systems.
  23. You can also use ruby-build without rbenv in environments
  24. where you need precise control over Ruby version installation.
  25. %prep
  26. %setup -q
  27. %patch1 -p1
  28. %build
  29. %install
  30. rm -rf %{buildroot}
  31. PREFIX=%{buildroot}%{_prefix} ./install.sh
  32. mkdir -p %{buildroot}%{_datadir}/%{name}/.patches
  33. cp %{SOURCE10} %{buildroot}%{_datadir}/%{name}/.patches/
  34. cp %{SOURCE11} %{buildroot}%{_datadir}/%{name}/.patches/
  35. %clean
  36. rm -rf %{buildroot}
  37. %files
  38. %defattr(-,root,root,-)
  39. %doc LICENSE README.md
  40. %{_bindir}/ruby-build
  41. %{_bindir}/rbenv-install
  42. %{_bindir}/rbenv-uninstall
  43. %{_datadir}/ruby-build
  44. %changelog
  45. * Wed Oct 24 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20121111-1
  46. - update to upstream git master
  47. - add 1.9.3-p327, 2.0.0-preview1, rbx-2.0.0-rc1
  48. * Wed Oct 24 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20121023-3
  49. - move patches dir to .patches
  50. - add source11 to fix build failure of ruby-1.8.7-*
  51. - update patch1 to build all ruby/ree-1.8.7*
  52. * Wed Oct 24 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20121023-2
  53. - add patch1, source10 to fix build failure of ree-1.8.7-2012.02
  54. * Tue Oct 23 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20121023-1
  55. - update to upstream git master
  56. * Fri Jun 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20110914-1
  57. - initial build for Vine Linux