931d9fbae7
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
36 lines
898 B
Makefile
36 lines
898 B
Makefile
################################################################################
|
|
#
|
|
# flex
|
|
#
|
|
################################################################################
|
|
|
|
FLEX_VERSION = 2.5.39
|
|
FLEX_SITE = http://download.sourceforge.net/project/flex
|
|
FLEX_INSTALL_STAGING = YES
|
|
FLEX_LICENSE = FLEX
|
|
FLEX_LICENSE_FILES = COPYING
|
|
FLEX_DEPENDENCIES = \
|
|
$(if $(BR2_PACKAGE_GETTEXT_IF_LOCALE),gettext) host-m4
|
|
FLEX_CONF_ENV = ac_cv_path_M4=/usr/bin/m4
|
|
# we don't have a host-gettext/libintl
|
|
HOST_FLEX_DEPENDENCIES = host-m4
|
|
|
|
ifeq ($(BR2_PACKAGE_FLEX_BINARY),y)
|
|
# lex -> flex
|
|
define FLEX_INSTALL_LEX
|
|
cd $(TARGET_DIR)/usr/bin && ln -snf flex lex
|
|
endef
|
|
FLEX_POST_INSTALL_HOOKS += FLEX_INSTALL_LEX
|
|
|
|
else
|
|
|
|
define FLEX_DISABLE_PROGRAM
|
|
$(SED) 's/^bin_PROGRAMS.*//' $(@D)/Makefile.in
|
|
endef
|
|
FLEX_POST_PATCH_HOOKS += FLEX_DISABLE_PROGRAM
|
|
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|