2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2012-03-09 14:18:03 +01:00
|
|
|
#
|
|
|
|
# minicom
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-06-06 01:53:25 +02:00
|
|
|
|
2018-08-31 15:38:19 +02:00
|
|
|
MINICOM_VERSION = 19ab49422f3431102c31fea01549121385113f80
|
|
|
|
MINICOM_SITE = https://salsa.debian.org/minicom-team/minicom.git
|
|
|
|
MINICOM_SITE_METHOD = git
|
2017-03-30 15:43:32 +02:00
|
|
|
MINICOM_LICENSE = GPL-2.0+
|
2012-08-01 09:06:58 +02:00
|
|
|
MINICOM_LICENSE_FILES = COPYING
|
2018-08-31 15:38:19 +02:00
|
|
|
MINICOM_AUTORECONF = YES
|
2012-03-09 14:18:03 +01:00
|
|
|
|
|
|
|
# pkg-config is only used to check for liblockdev, which we don't have
|
2015-10-21 11:30:14 +02:00
|
|
|
# in BR, so instead of adding host-pkgconf as a dependency, simply make
|
|
|
|
# sure the host version isn't used so we don't end up with problems if
|
|
|
|
# people have liblockdev1-dev installed
|
2012-03-09 14:18:03 +01:00
|
|
|
MINICOM_CONF_ENV = PKG_CONFIG=/bin/false
|
|
|
|
|
2018-08-31 15:38:19 +02:00
|
|
|
MINICOM_DEPENDENCIES = ncurses $(if $(BR2_ENABLE_LOCALE),,libiconv) \
|
|
|
|
$(TARGET_NLS_DEPENDENCIES)
|
|
|
|
# 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
|
2012-03-09 14:18:03 +01:00
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|