-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathruby19.spec
91 lines (73 loc) · 2.68 KB
/
ruby19.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
%define rubyver 1.9.2
%define rubyminorver p290
Name: ruby19
Version: %{rubyver}%{rubyminorver}
Release: 3%{?dist}
License: Ruby License/GPL - see COPYING
URL: http://www.ruby-lang.org/
Provides: ruby(abi) = 1.9
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: readline readline-devel ncurses ncurses-devel gdbm gdbm-devel glibc-devel tcl-devel gcc unzip openssl-devel db4-devel byacc /bin/sed
Source0: ftp://ftp.ruby-lang.org/pub/ruby/ruby-%{rubyver}-%{rubyminorver}.tar.gz
Patch0: ruby-mkmf_static.patch
Summary: An interpreter of object-oriented scripting language
Group: Development/Languages
%description
Ruby is the interpreted scripting language for quick and easy
object-oriented programming. It has many features to process text
files and to do system management tasks (as in Perl). It is simple,
straight-forward, and extensible.
%prep
%setup -n ruby-%{rubyver}-%{rubyminorver}
%patch0 -p1
%build
CFLAGS="$RPM_OPT_FLAGS -Wall -fno-strict-aliasing"
export CFLAGS
%configure \
--enable-shared \
--disable-rpath \
--without-X11 \
--without-tk \
--program-suffix=19
export LD_LIBRARY_PATH=$(pwd)
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
# installing binaries ...
make install DESTDIR=$RPM_BUILD_ROOT
rm -f $RPM_BUILD_ROOT%{_libdir}/libruby-static.a
rm -f $RPM_BUILD_ROOT%{_libdir}/libruby.so
# Fix libruby linking
sed -i 's/\(.*LIBRUBYARG_SHARED.*=\).*/\1 "$(libdir)\/lib$(RUBY_SO_NAME).so.$(ruby_version)"/' $RPM_BUILD_ROOT%{_libdir}/ruby/1.9.1/%{_target}/rbconfig.rb
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-, root, root)
%doc README COPYING ChangeLog LEGAL ToDo
%{_bindir}
%{_includedir}
%{_libdir}
%{_prefix}/share/
%changelog
- Fix mkmf.rb using libruby-static for lib detection
- Use _target macro to find rbconfig.rb
- Fix linking of compiled gem extensions
- ruby19.spec
- fixed i386 build
- fix i386 build
- updated to 1.9.2p180
- Disable X11 support
- Disable tk support
- renamed package to ruby19
- ruby bin renamed to ruby19
- install using standard prefix
- Initial build for el5 based off of el5 spec.