34 lines
897 B
Bash
34 lines
897 B
Bash
# Template file for 'flex'
|
|
pkgname=flex
|
|
version=2.5.39
|
|
revision=1
|
|
build_style=gnu-configure
|
|
# YES REALLY! WE DONT WANT BINS LINKED TO LIBFL!
|
|
configure_args="--disable-shared"
|
|
hostmakedepends="help2man bison"
|
|
makedepends="bison"
|
|
depends="bison libfl-devel-${version}_${revision}"
|
|
replaces="libfl>=0"
|
|
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=add2b55f3bc38cb512b48fad7d72f43b11ef244487ff25fc00aabec1e32b617f
|
|
|
|
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() {
|
|
replaces="libfl>=0"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
}
|
|
}
|