wok view flex/receipt @ rev 15022

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 11 19:53:39 2013 +0000 (2013-08-11)
parents 2d437cc7c50c
children 159df010240c
line source
1 # SliTaz package receipt.
3 PACKAGE="flex"
4 VERSION="2.5.37"
5 CATEGORY="development"
6 SHORT_DESC="Flex is a fast lexical analyser generator."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://flex.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="bison"
14 BUILD_DEPENDS="bison"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure $CONFIGURE_ARGS &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 ln -s flex $fs/usr/bin/lex
30 cp -a $install/usr/lib $fs/usr
31 cp -a $install/usr/include $fs/usr
32 }