ruby-build/ruby-build.spec

35 lines
869 B
RPMSpec

Name: ruby-build
Version: 20150303
Release: 0
BuildArch: noarch
License: MIT
Group: Development/Languages/Ruby
Url: https://github.com/sstephenson/ruby-build
Summary: Compile and install Ruby
Source0: ruby-build-%{version}.tar.bz2
Requires: bash curl gcc
# ruby MRI BuildRequires
Requires: bison gdbm-devel gperf graphviz libjpeg-devel openssl-devel readline-devel tk-devel automake
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
ruby-build provides a simple way to compile and install different versions of Ruby on UNIX-like systems.
%prep
%setup -q
%build
%install
%__mkdir_p %{buildroot}%{_bindir}
cp bin/* %{buildroot}%{_bindir}
%__mkdir_p %{buildroot}%{_datadir}/ruby-build
cp share/ruby-build/* %{buildroot}%{_datadir}/ruby-build
%files
%defattr(-,root, root)
%{_bindir}/*
%dir %{_datadir}/ruby-build
%{_datadir}/ruby-build/*