e23895b999
Shortlog follows: Adam Lackorzynski (5): Update norwegian translation Fix a sprintf string rendering warning Add buf size to input function Fix a strncpy warning Fix more strncpy warnings Giulio Benetti (1): .hgignore: add .gitignore instead of .hgignore Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
26 lines
770 B
Makefile
26 lines
770 B
Makefile
################################################################################
|
|
#
|
|
# minicom
|
|
#
|
|
################################################################################
|
|
|
|
MINICOM_VERSION = 5086119bbaafd2f8986579209885635b92020096
|
|
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
|
|
|
|
$(eval $(autotools-package))
|