mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-22 01:06:30 +00:00
78440702f1
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
29 lines
1009 B
Makefile
29 lines
1009 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="flex"
|
|
PKG_VERSION="2.6.4"
|
|
PKG_SHA256="e87aae032bf07c26f85ac0ed3250998c37621d95f8bd748b31f15b33c45ee995"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://github.com/westes/flex"
|
|
PKG_URL="https://github.com/westes/flex/releases/download/v${PKG_VERSION}/${PKG_NAME}-${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_HOST="ccache:host m4:host autotools:host bison:host"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="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"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="ac_cv_func_realloc_0_nonnull=yes \
|
|
ac_cv_func_malloc_0_nonnull=yes"
|
|
|
|
post_makeinstall_host() {
|
|
cat > ${TOOLCHAIN}/bin/lex << "EOF"
|
|
#!/bin/sh
|
|
exec flex "$@"
|
|
EOF
|
|
|
|
chmod -v 755 ${TOOLCHAIN}/bin/lex
|
|
}
|