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
|
Name: re2
Version: 20231101
Release: 1
License: BSD-3-Clause
Summary: An efficient, principled regular expression library
Url: http://code.google.com/p/re2/
Group: System/Libraries
Source: re2-%{version}.tgz
Source1001: %{name}.manifest
BuildRequires: gcc-c++
BuildRequires: abseil-cpp-devel
%description
RE2 is a fast, safe, thread-friendly alternative to backtracking
regular expression engines like those used in PCRE, Perl, and
Python. It is a C++ library.
%package -n libre2
License: BSD-2.0
Summary: An efficient, principled regular expression library
Group: System/Libraries
%description -n libre2
RE2 is a fast, safe, thread-friendly alternative to backtracking
regular expression engines like those used in PCRE, Perl, and
Python. It is a C++ library.
%package devel
License: BSD-2.0
Summary: An efficient, principled regular expression library
Group: System/Libraries
Requires: libre2 = %{version}
%description devel
RE2 is a fast, safe, thread-friendly alternative to backtracking
regular expression engines like those used in PCRE, Perl, and
Python. It is a C++ library.
%prep
%setup -q -n re2
cp %{SOURCE1001} .
%build
make %{?_smp_mflags} CXXFLAGS="$RPM_OPT_FLAGS -Wall -pthread" libdir=%{_libdir} prefix=%{_prefix}
%install
make DESTDIR=$RPM_BUILD_ROOT libdir=%{_libdir} prefix=%{_prefix} install
rm $RPM_BUILD_ROOT%{_libdir}/libre2.a
%remove_docs
%post -n libre2 -p /sbin/ldconfig
%postun -n libre2 -p /sbin/ldconfig
%files -n libre2
%manifest %{name}.manifest
%license LICENSE
%{_libdir}/libre2.so.*
%files devel
%manifest %{name}.manifest
%{_includedir}/re2
%{_libdir}/libre2.so
%{_libdir}/pkgconfig/re2.pc
|