2498044007
Shortlog follows: Adam Lackorzynski (2): minicom.c: Convert TABs to spaces minicom.c: Reflow long_options Rasmus Villemoes (1): Allow user to specify buffering mode of capture file Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
30 lines
854 B
Makefile
30 lines
854 B
Makefile
################################################################################
|
|
#
|
|
# minicom
|
|
#
|
|
################################################################################
|
|
|
|
MINICOM_VERSION = a6a507dcb8bd4cb5da7af9e2dc75b8e495fedbb6
|
|
MINICOM_SITE = https://salsa.debian.org/minicom-team/minicom.git
|
|
MINICOM_SITE_METHOD = git
|
|
MINICOM_LICENSE = GPL-2.0+
|
|
MINICOM_LICENSE_FILES = COPYING
|
|
MINICOM_AUTORECONF = YES
|
|
|
|
MINICOM_DEPENDENCIES = ncurses $(if $(BR2_ENABLE_LOCALE),,libiconv) \
|
|
$(TARGET_NLS_DEPENDENCIES) host-pkgconf
|
|
# add host-gettext for AM_ICONV macro
|
|
MINICOM_DEPENDENCIES += host-gettext
|
|
|
|
# Autoreconf requires an existing m4 directory
|
|
define MINICOM_MKDIR_M4
|
|
mkdir -p $(@D)/m4
|
|
endef
|
|
MINICOM_POST_PATCH_HOOKS += MINICOM_MKDIR_M4
|
|
|
|
MINICOM_CONF_OPTS = \
|
|
--enable-dfl-port=/dev/ttyS1 \
|
|
--enable-lock-dir=/var/lock
|
|
|
|
$(eval $(autotools-package))
|