ruby-build-vl.spec 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. %global gitdate 20121213
  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. * Thu Dec 13 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20121213-1
  46. - update to upstream git master
  47. - add 2.0.0-preview2, 1.8.7-p371
  48. * Wed Oct 24 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20121111-1
  49. - update to upstream git master
  50. - add 1.9.3-p327, 2.0.0-preview1, rbx-2.0.0-rc1
  51. * Wed Oct 24 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20121023-3
  52. - move patches dir to .patches
  53. - add source11 to fix build failure of ruby-1.8.7-*
  54. - update patch1 to build all ruby/ree-1.8.7*
  55. * Wed Oct 24 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20121023-2
  56. - add patch1, source10 to fix build failure of ree-1.8.7-2012.02
  57. * Tue Oct 23 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20121023-1
  58. - update to upstream git master
  59. * Fri Jun 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20110914-1
  60. - initial build for Vine Linux