818adc7e01
Remove README from license files. The Buildroot generated image does not use the source files that README mentioned. README states that other files "have a license and copyright notice at their start", which doesn't add much information. Cc: Yann E. MORIN <yann.morin.1998@free.fr> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
22 lines
725 B
Makefile
22 lines
725 B
Makefile
################################################################################
|
|
#
|
|
# tmux
|
|
#
|
|
################################################################################
|
|
|
|
TMUX_VERSION = 2.8
|
|
TMUX_SITE = https://github.com/tmux/tmux/releases/download/$(TMUX_VERSION)
|
|
TMUX_LICENSE = ISC
|
|
TMUX_LICENSE_FILES = COPYING
|
|
TMUX_DEPENDENCIES = libevent ncurses host-pkgconf
|
|
|
|
# Add /usr/bin/tmux to /etc/shells otherwise some login tools like dropbear
|
|
# can reject the user connection. See man shells.
|
|
define TMUX_ADD_TMUX_TO_SHELLS
|
|
grep -qsE '^/usr/bin/tmux$$' $(TARGET_DIR)/etc/shells \
|
|
|| echo "/usr/bin/tmux" >> $(TARGET_DIR)/etc/shells
|
|
endef
|
|
TMUX_TARGET_FINALIZE_HOOKS += TMUX_ADD_TMUX_TO_SHELLS
|
|
|
|
$(eval $(autotools-package))
|