mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 07:51:59 -09:00
For release notes since 3.5, see:
https://github.com/tio/tio/releases
This commit updates the license hash, after a year update:
f5740dbf31
Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
23 lines
632 B
Makefile
23 lines
632 B
Makefile
################################################################################
|
|
#
|
|
# tio
|
|
#
|
|
################################################################################
|
|
|
|
TIO_VERSION = 3.9
|
|
TIO_SOURCE = tio-$(TIO_VERSION).tar.xz
|
|
TIO_SITE = https://github.com/tio/tio/releases/download/v$(TIO_VERSION)
|
|
TIO_LICENSE = GPL-2.0+
|
|
TIO_LICENSE_FILES = LICENSE
|
|
TIO_DEPENDENCIES = libglib2 luainterpreter
|
|
|
|
TIO_CONF_OPTS += -Dinstall_man_pages=false
|
|
|
|
ifeq ($(BR2_PACKAGE_BASH_COMPLETION),y)
|
|
TIO_CONF_OPTS +=-Dbashcompletiondir=/usr/share/bash-completion/completions
|
|
else
|
|
TIO_CONF_OPTS +=-Dbashcompletiondir=no
|
|
endif
|
|
|
|
$(eval $(meson-package))
|