04a11ca1b8
Remove both patches since they've been upstreamed. Add host-pkgconf to MINICOM_DEPENDENCIES and remove: `MINICOM_CONF_ENV = PKG_CONFIG=/bin/false` since now pkg-config is needed to build. Shortlog follows: git shortlog --no-merges 19ab49422f3431102c31fea01549121385113f80.. Adam Lackorzynski (9): Update project URL Updated translations Updated translations: pl and sv Translations: regen update Update danish translation Update of danish translation Update README Formatting fix More friendly mbslength test Fabrice Fontaine (1): src/Makefile.am: fix ascii-xfr link with lintl Giulio Benetti (2): TODO: remove Utf8 bug. sysdep1: check if RS485 is support before setting its parameters Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
26 lines
770 B
Makefile
26 lines
770 B
Makefile
################################################################################
|
|
#
|
|
# minicom
|
|
#
|
|
################################################################################
|
|
|
|
MINICOM_VERSION = 1e84585e8e7710677b6ff9a70dce5f3ad3e23540
|
|
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))
|