mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
27 lines
810 B
Makefile
27 lines
810 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
|
|
PKG_NAME="flex"
|
|
PKG_VERSION="2.5.39"
|
|
PKG_SHA256="add2b55f3bc38cb512b48fad7d72f43b11ef244487ff25fc00aabec1e32b617f"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://flex.sourceforge.net/"
|
|
PKG_URL="$SOURCEFORGE_SRC/flex/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
|
PKG_DEPENDS_HOST="ccache:host"
|
|
PKG_SECTION="toolchain/devel"
|
|
PKG_SHORTDESC="flex: Fast lexical analyzer generator"
|
|
PKG_LONGDESC="flex is a tool for generating programs that perform pattern-matching on text."
|
|
PKG_TOOLCHAIN="autotools"
|
|
|
|
PKG_CONFIGURE_OPTS_HOST="--enable-static --disable-shared --disable-rpath --with-gnu-ld"
|
|
|
|
post_makeinstall_host() {
|
|
cat > $TOOLCHAIN/bin/lex << "EOF"
|
|
#!/bin/sh
|
|
exec flex "$@"
|
|
EOF
|
|
|
|
chmod -v 755 $TOOLCHAIN/bin/lex
|
|
}
|