]> git.ipfire.org Git - people/stevee/ipfire-3.x.git/blame - pkgs/core/flex/flex.nm
naoki: Mixed things.
[people/stevee/ipfire-3.x.git] / pkgs / core / flex / flex.nm
CommitLineData
166a6c21
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include ../../Config
26
27PKG_NAME = flex
28PKG_VER = 2.5.35
29PKG_REL = 0
30
31PKG_MAINTAINER =
32PKG_GROUP = Development/Tools
33PKG_URL = http://flex.sourceforge.net/
34PKG_LICENSE = BSD
35PKG_SUMMARY = A tool for creating scanners (text pattern recognizers).
36
37PKG_DEPS += m4
38
39define PKG_DESCRIPTION
40 The flex program generates scanners. Scanners are programs which can \
41 recognize lexical patterns in text. Flex takes pairs of regular \
42 expressions and C code as input and generates a C source file as \
43 output. The output file is compiled and linked with a library to \
44 produce an executable. The executable searches through its input for \
45 occurrences of the regular expressions. When a match is found, it \
46 executes the corresponding C code. Flex was designed to work with \
47 both Yacc and Bison, and is used by many programs as part of their \
48 build process.
49endef
50
51PKG_TARBALL = $(THISAPP).tar.bz2
52
53include ../../Rules
54
55###############################################################################
56# Installation Details
57###############################################################################
58
17c0ee8a 59define STAGE_BUILD
166a6c21
MT
60 cd $(DIR_APP) && \
61 ./configure \
62 $(CONFIGURE_ARCH) \
63 --prefix=/usr \
64 --disable-static
65
66 cd $(DIR_APP) && make $(PARALLELISMFLAGS)
17c0ee8a 67endef
166a6c21 68
17c0ee8a 69define STAGE_INSTALL
166a6c21
MT
70 cd $(DIR_APP) && make install DESTDIR=$(BUILDROOT)
71 echo "#!/bin/sh" > $(BUILDROOT)/usr/bin/lex
72 echo "exec /usr/bin/flex -l \"$$@\"" >> $(BUILDROOT)/usr/bin/lex
73 chmod 755 $(BUILDROOT)/usr/bin/lex
17c0ee8a 74endef
166a6c21 75