blob: 6e8572d63bedcc61c03f379d5fe755e715c4c388 (
plain)
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
|
Name: re2c
Version: 3.0
Release: 0
License: PD
Summary: Tool for generating C-based recognizers from regular expressions
Url: http://re2c.org/
Group: Development/Libraries/C and C++
Source: %{name}-%{version}.tar.bz2
Source1001: re2c.manifest
BuildRequires: gcc-c++
%description
re2c is a tool for writing fast and flexible lexers. Unlike other such
tools, it concentrates solely on generating efficient code for matching
regular expressions. This makes it suitable for a wide variety of
applications. The generated scanners approach hand-crafted ones in
terms of size and speed.
%prep
%setup -q
cp %{SOURCE1001} .
find -type d -name .svn -print0 | xargs -r0 rm -rf
find CHANGELOG lessons examples -type f -print0 \
| xargs -r0 chmod -v a-x
%build
export CFLAGS+=" -fPIC"
export CXXFLAGS+=" -fPIC"
export LDFLAGS+=" -pie"
mkdir -p m4
autoreconf -i -W all
%configure
%{__make} %{?_smp_mflags}
%install
%make_install
%remove_docs
%files
%manifest %{name}.manifest
%defattr(-,root,root,-)
%{_bindir}/re2c
%{_bindir}/re2go
%{_bindir}/re2rust
%{_datadir}/re2c/stdlib/unicode_categories.re
|