6.35. Flex-2.5.39

The Flex package contains a utility for generating programs that recognize patterns in text.

Approximate build time: 0.3 SBU
Required disk space: 38 MB

6.35.1. Installation of Flex

First, skip running three regression tests that require Bison:

sed -i -e '/test-bison/d' tests/Makefile.in

Prepare Flex for compilation:

./configure --prefix=/usr --docdir=/usr/share/doc/flex-2.5.39

Compile the package:

make

To test the results (about 0.5 SBU), issue:

make check

Install the package to a temporary directory:

make install DESTDIR=$(pwd)/debian/tmp

A few programs do not know about flex yet and try to run its predecessor, lex. To support those programs, create a symbolic link named lex that runs flex in lex emulation mode:

ln -sv flex debian/tmp/usr/bin/lex

Create the package archive:

buildpkg

Install the package:

dpkg -i ../flex_2.5.39_*.deb

6.35.2. Contents of Flex

Installed programs: flex, flex++ (link to flex), and lex (link to flex)
Installed libraries: libfl.{a,so} and libfl_pic.{a,so}
Installed directory: /usr/share/doc/flex-2.5.39

Short Descriptions

flex

A tool for generating programs that recognize patterns in text; it allows for the versatility to specify the rules for pattern-finding, eradicating the need to develop a specialized program

flex++

An extension of flex, is used for generating C++ code and classes. It is a symbolic link to flex

lex

A script that runs flex in lex emulation mode

libfl

The flex library