1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-16 04:14:01 +02:00
openwrt-packages/devel/flex/Makefile
W. Michael Petullo d681408b34 flex: use PKG_FIXUP:=autoreconf gettext-version
This change aims to fix build problems that produce the error "gettext
infrastructure mismatch".

References:
- See the commit comments at:
  baaf7f95cb

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2022-04-17 22:46:00 +02:00

47 lines
1.1 KiB
Makefile

# SPDX-Identifier-License: GPL-2.0-only
#
# Copyright (C) 2022 W. Michael Petullo <mike@flyn.org>
include $(TOPDIR)/rules.mk
PKG_NAME:=flex
PKG_VERSION:=2.6.4
PKG_RELEASE:=$(AUTORELEASE)
PKG_CPE_ID:=cpe:/a:flex_project:flex
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://github.com/westes/flex/releases/download/v$(PKG_VERSION)/
PKG_HASH:=e87aae032bf07c26f85ac0ed3250998c37621d95f8bd748b31f15b33c45ee995
PKG_FIXUP:=autoreconf gettext-version
PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
PKG_LICENSE:=BSD-2-Clause
PKG_LICENSE_FILES:=COPYING
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/flex
SECTION:=devel
CATEGORY:=Development
TITLE:=flex
URL:=https://github.com/westes/flex
endef
define Package/flex/description
flex is a tool for generating scanners: programs which recognize lexical patterns in text
endef
CONFIGURE_ARGS += --disable-shared --disable-bootstrap
define Package/flex/install
$(INSTALL_DIR) $(1)/usr/bin/
$(CP) \
$(PKG_INSTALL_DIR)/usr/bin/flex \
$(1)/usr/bin/
endef
$(eval $(call BuildPackage,flex))