]> git.pld-linux.org Git - packages/re2c.git/blame - re2c.spec
- verbose bin,man files
[packages/re2c.git] / re2c.spec
CommitLineData
dcc6af2d 1Summary: re2c - a tool for writing very fast and very flexible scanners
9e10e499 2Summary(pl.UTF-8): re2c - narzędzie do pisania bardzo szybkich i elastycznych skanerów
8bceedb6 3Name: re2c
2807eb7d
AG
4Version: 1.1.1
5Release: 1
8bceedb6 6License: Public Domain
11d77812 7Group: Applications/Text
a4be96a9
JB
8#Source0Download: https://github.com/skvadrik/re2c/releases
9Source0: https://github.com/skvadrik/re2c/releases/download/%{version}/%{name}-%{version}.tar.gz
2807eb7d 10# Source0-md5: 7355fde733bd76cbc480cda10ef49e46
8bceedb6 11URL: http://re2c.org/
9716f383 12BuildRequires: autoconf >= 2.57
a4be96a9 13BuildRequires: automake >= 1:1.11
9e10e499 14BuildRequires: libstdc++-devel
8bceedb6 15BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17%description
9e10e499
JB
18re2c is a tool for writing very fast and very flexible scanners.
19Unlike any other such tool, re2c focuses on generating high efficient
20code for regular expression matching. As a result this allows a much
21broader range of use than any traditional lexer offers. And last but
22not least re2c generates warning free code that is equal to
23hand-written code in terms of size, speed and quality.
24
25%description -l pl.UTF-8
26re2c to narzędzie do pisania bardzo szybkich i bardzo elastycznych
27skanerów. W przeciwieństwie do innych podobnych narzędzi re2c skupia
28się na bardzo wydajnym kodzie do dopasowywania wyrażeń regularnych. W
29efekcie pozwala to na dużo szerszy zakres zastosowań niż oferują
30tradycyjne leksery. I wreszcie re2c generuje kod wolny od ostrzeżeń,
31równoważny kodowi pisanemu ręcznie pod kątem rozmiaru, szybkości i
32jakości.
8bceedb6 33
34%prep
35%setup -q
36
37%build
8bceedb6 38%{__aclocal}
39%{__autoconf}
40%{__autoheader}
9716f383 41%{__automake}
8bceedb6 42%configure
43%{__make}
44
45%install
46rm -rf $RPM_BUILD_ROOT
47
48%{__make} install \
49 DESTDIR=$RPM_BUILD_ROOT
50
51%clean
52rm -rf $RPM_BUILD_ROOT
53
54%files
55%defattr(644,root,root,755)
2807eb7d 56%doc CHANGELOG README doc/* examples
a4be96a9
JB
57%attr(755,root,root) %{_bindir}/re2c
58%{_mandir}/man1/re2c.1*
This page took 0.405541 seconds and 4 git commands to generate.