source: trunk/essentials/sys-devel/flex/flex.spec@ 3186

Last change on this file since 3186 was 3043, checked in by bird, 19 years ago

-> essentials

File size: 1.3 KB
Line 
1Summary: fast lexical analyzer generator
2Name: flex
3Version: 2.5.33
4Release: 0
5License: BSD style
6Group: Development/Tools
7Source: ftp://ftp.ee.lbl.gov/%{name}-%{version}.tar.gz
8Prefix: %{_prefix}
9BuildRoot: %{_tmppath}/%{name}-%{version}
10Prereq: /sbin/install-info
11
12%description
13The flex program generates scanners. Scanners are programs which can
14recognize lexical patterns in text. Flex takes pairs of regular
15expressions and C code as input and generates a C source file as
16output. The output file is compiled and linked with a library to
17produce an executable. The executable searches through its input for
18occurrences of the regular expressions. When a match is found, it
19executes the corresponding C code. Flex was designed to work with
20both Yacc and Bison, and is used by many programs as part of their
21build process.
22
23%prep
24%setup -q -n %{name}-%{version}
25