mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-20 17:42:10 +00:00
22 lines
536 B
Makefile
22 lines
536 B
Makefile
################################################################################
|
|
#
|
|
# tig
|
|
#
|
|
################################################################################
|
|
|
|
TIG_VERSION = 2.5.10
|
|
TIG_SITE = https://github.com/jonas/tig/releases/download/tig-$(TIG_VERSION)
|
|
TIG_LICENSE = GPL-2.0+
|
|
TIG_LICENSE_FILES = COPYING
|
|
|
|
TIG_DEPENDENCIES = 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))
|