36 lines
827 B
Text
36 lines
827 B
Text
# Template file for 'flex'
|
|
pkgname=flex
|
|
version=2.5.37
|
|
revision=2
|
|
build_style=gnu-configure
|
|
hostmakedepends="help2man bison"
|
|
short_desc="The Fast Lexical Analyzer"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://flex.sourceforge.net"
|
|
license="BSD"
|
|
distfiles="${SOURCEFORGE_SITE}/flex/${pkgname}-${version}.tar.bz2"
|
|
checksum=17aa7b4ebf19a13bc2dff4115b416365c95f090061539a932a68092349ac052a
|
|
|
|
pre_install() {
|
|
sed -i "s|.SUFFIXES: .dvi .html .info .pdf .ps .texi|.SUFFIXES: .info .texi|g" doc/Makefile
|
|
}
|
|
|
|
post_install() {
|
|
vinstall COPYING 644 usr/share/licenses/flex
|
|
}
|
|
|
|
libfl-devel_package() {
|
|
short_desc+=" -- static library and headers"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
}
|
|
}
|
|
|
|
flex_package() {
|
|
depends="bison libfl-devel>=${version}"
|
|
pkg_install() {
|
|
vmove usr/bin
|
|
vmove usr/share
|
|
}
|
|
}
|