-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby-re2.spec
More file actions
71 lines (60 loc) · 1.78 KB
/
ruby-re2.spec
File metadata and controls
71 lines (60 loc) · 1.78 KB
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
#
# Conditional build:
%bcond_with tests # unit tests
%define pkgname re2
Summary: Ruby bindings to re2
Summary(pl.UTF-8): Wiązania języka Ruby do re2
Name: ruby-%{pkgname}
Version: 1.6.0
Release: 3
License: BSD
Group: Development/Languages
Source0: http://rubygems.org/downloads/%{pkgname}-%{version}.gem
# Source0-md5: b587f794c54434e232a1df9b227f4dd4
URL: https://github.com/mudge/re2
BuildRequires: libstdc++-devel >= 6:4.8
BuildRequires: re2-devel >= 20200302
BuildRequires: rpm-rubyprov
BuildRequires: rpmbuild(macros) >= 1.656
BuildRequires: ruby-devel >= 1:1.8.7
%if %{with tests}
BuildRequires: ruby-minitest < 6
BuildRequires: ruby-minitest >= 5.4
BuildRequires: ruby-rake-compiler < 1
BuildRequires: ruby-rake-compiler >= 0.9
%endif
BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
%description
Ruby bindings to re2, an efficient, principled regular expression
library.
%description -l pl.UTF-8
Wiązania języka Ruby do re2 - wydajnej, zasadniczej biblioteki
wyrażeń regularnych.
%prep
%setup -q -n %{pkgname}-%{version}
# required by gem helper
%{__tar} xf %{SOURCE0} metadata.gz
%build
# write .gemspec
%__gem_helper spec
cd ext/%{pkgname}
%{__ruby} extconf.rb
%{__make} \
CC="%{__cc}" \
LDFLAGS="%{rpmldflags}" \
CFLAGS="%{rpmcflags} -fPIC"
%install
rm -rf $RPM_BUILD_ROOT
install -d $RPM_BUILD_ROOT{%{ruby_vendorlibdir},%{ruby_vendorarchdir},%{ruby_specdir}}
cp -a lib/* $RPM_BUILD_ROOT%{ruby_vendorlibdir}
cp -p %{pkgname}-%{version}.gemspec $RPM_BUILD_ROOT%{ruby_specdir}
install -p ext/re2/re2.so $RPM_BUILD_ROOT%{ruby_vendorarchdir}
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(644,root,root,755)
%doc LICENSE.txt README.md
%attr(755,root,root) %{ruby_vendorarchdir}/re2.so
%{ruby_vendorlibdir}/re2.rb
%{ruby_vendorlibdir}/re2
%{ruby_specdir}/%{pkgname}-%{version}.gemspec