mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 12:46:45 -09:00
For change log since 2.5.12, see: https://github.com/jonas/tig/releases/tag/tig-2.6.0 Signed-off-by: Julien Olivain <ju.o@free.fr>
21 lines
548 B
Makefile
21 lines
548 B
Makefile
################################################################################
|
|
#
|
|
# tig
|
|
#
|
|
################################################################################
|
|
|
|
TIG_VERSION = 2.6.0
|
|
TIG_SITE = https://github.com/jonas/tig/releases/download/tig-$(TIG_VERSION)
|
|
TIG_LICENSE = GPL-2.0+
|
|
TIG_LICENSE_FILES = COPYING
|
|
|
|
TIG_DEPENDENCIES = host-pkgconf ncurses
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
|
TIG_DEPENDENCIES += libiconv
|
|
TIG_CONF_OPTS += --with-iconv=$(STAGING_DIR)/usr
|
|
else
|
|
TIG_CONF_OPTS += --without-iconv
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|