summaryrefslogtreecommitdiffstats
path: root/flex/Pkgfile
blob: 0645a06d7adc754fdc2d3592f0ad70a9204c4353 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
description="Fast Lexical Analyzer Generator."
packager="CRUX System Team <core-ports AT crux DOT nu>"
maintainer="Lukc <lukc AT upyum DOT com>"
url="http://flex.sourceforge.net/"
depends=()

name=flex
version=2.5.35
release=2
source=(http://downloads.sourceforge.net/project/flex/flex/$name-$version/$name-$version.tar.bz2 $name-$version-gcc44-1.patch)
build () 
{ 
	cd $name-$version;
	patch -p1 -i $SRC/$name-$version-gcc44-1.patch;
	./configure --prefix=$prefix --mandir=$mandir $(use_enable nls);
	make;
	make DESTDIR=$PKG install;
	ln -sf flex $PKG$prefix/bin/lex;
	ln -sf flex.1.gz $PKG$mandir/man1/lex.1.gz;
	rm -rf $PKG$prefix/info
}