ruby-build-vl.spec 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. %global gitdate 20121023
  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: 3%{?_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.20121023-3
  46. - move patches dir to .patches
  47. - add source11 to fix build failure of ruby-1.8.7-*
  48. - update patch1 to build all ruby/ree-1.8.7*
  49. * Wed Oct 24 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20121023-2
  50. - add patch1, source10 to fix build failure of ree-1.8.7-2012.02
  51. * Tue Oct 23 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20121023-1
  52. - update to upstream git master
  53. * Fri Jun 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20110914-1
  54. - initial build for Vine Linux