mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 07:51:59 -09:00
Major release, multibyte text can now be typed, displayed, and edited in UTF-8 locales. Also, syntax highlighting, a visible region, and side by side windows. Release notes: https://github.com/troglobit/mg/releases/tag/v4.0 Signed-off-by: Joachim Wiberg <troglobit@gmail.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
20 lines
484 B
Makefile
20 lines
484 B
Makefile
################################################################################
|
|
#
|
|
# mg
|
|
#
|
|
################################################################################
|
|
|
|
MG_VERSION = 4.0
|
|
MG_SITE = https://github.com/troglobit/mg/releases/download/v$(MG_VERSION)
|
|
MG_LICENSE = Public Domain
|
|
MG_LICENSE_FILES = UNLICENSE
|
|
|
|
ifeq ($(BR2_PACKAGE_NCURSES),y)
|
|
MG_DEPENDENCIES += ncurses
|
|
MG_CONF_OPTS += --with-curses
|
|
else
|
|
MG_CONF_OPTS += --without-curses
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|