tig.mk 548 B

123456789101112131415161718192021
  1. ################################################################################
  2. #
  3. # tig
  4. #
  5. ################################################################################
  6. TIG_VERSION = 2.6.0
  7. TIG_SITE = https://github.com/jonas/tig/releases/download/tig-$(TIG_VERSION)
  8. TIG_LICENSE = GPL-2.0+
  9. TIG_LICENSE_FILES = COPYING
  10. TIG_DEPENDENCIES = host-pkgconf ncurses
  11. ifeq ($(BR2_PACKAGE_LIBICONV),y)
  12. TIG_DEPENDENCIES += libiconv
  13. TIG_CONF_OPTS += --with-iconv=$(STAGING_DIR)/usr
  14. else
  15. TIG_CONF_OPTS += --without-iconv
  16. endif
  17. $(eval $(autotools-package))