mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
Release notes: https://git.savannah.gnu.org/cgit/grep.git/tree/NEWS?h=v3.12 https://savannah.gnu.org/news/?id=10753 https://lists.gnu.org/archive/html/info-gnu/2025-04/msg00008.html Signed-off-by: Kadambini Nema <kadambini.nema@gmail.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# grep
|
|
#
|
|
################################################################################
|
|
|
|
GREP_VERSION = 3.12
|
|
GREP_SITE = $(BR2_GNU_MIRROR)/grep
|
|
GREP_SOURCE = grep-$(GREP_VERSION).tar.xz
|
|
GREP_LICENSE = GPL-3.0+
|
|
GREP_LICENSE_FILES = COPYING
|
|
GREP_CPE_ID_VENDOR = gnu
|
|
GREP_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
|
|
# install into /bin like busybox grep
|
|
GREP_CONF_OPTS = --exec-prefix=/
|
|
|
|
ifeq ($(BR2_SYSTEM_BIN_SH_NONE),y)
|
|
|
|
define GREP_REMOVE_ALIAS
|
|
$(RM) $(TARGET_DIR)/bin/[fe]grep
|
|
endef
|
|
GREP_POST_INSTALL_TARGET_HOOKS += GREP_REMOVE_ALIAS
|
|
|
|
else
|
|
|
|
# ensure egrep/fgrep shell wrappers use #!/bin/sh
|
|
define GREP_FIXUP_SHEBANG
|
|
$(SED) 's/bash$$/sh/' $(TARGET_DIR)/bin/[fe]grep
|
|
endef
|
|
GREP_POST_INSTALL_TARGET_HOOKS += GREP_FIXUP_SHEBANG
|
|
|
|
endif
|
|
|
|
# link with iconv if enabled
|
|
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
|
GREP_CONF_ENV += LIBS=-liconv
|
|
GREP_DEPENDENCIES += libiconv
|
|
endif
|
|
|
|
# link with pcre if enabled
|
|
ifeq ($(BR2_PACKAGE_PCRE2),y)
|
|
GREP_CONF_OPTS += --enable-perl-regexp
|
|
GREP_DEPENDENCIES += pcre2
|
|
else
|
|
GREP_CONF_OPTS += --disable-perl-regexp
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|