New package minicom
[Peter: fix whitespace and deps (wchar, ncurses, only iconv if !locale)] Signed-off-by: Simon Dawson <spdawson at gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
f044e03776
commit
608e6af167
@ -197,6 +197,7 @@ source "package/lvm2/Config.in"
|
||||
source "package/makedevs/Config.in"
|
||||
source "package/mdadm/Config.in"
|
||||
source "package/memtester/Config.in"
|
||||
source "package/minicom/Config.in"
|
||||
source "package/mtd/Config.in"
|
||||
source "package/ntfs-3g/Config.in"
|
||||
source "package/ntfsprogs/Config.in"
|
||||
|
14
package/minicom/Config.in
Normal file
14
package/minicom/Config.in
Normal file
@ -0,0 +1,14 @@
|
||||
config BR2_PACKAGE_MINICOM
|
||||
bool "minicom"
|
||||
depends on BR2_USE_WCHAR
|
||||
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
||||
select BR2_PACKAGE_NCURSES
|
||||
help
|
||||
Minicom is a menu driven communications program.
|
||||
It emulates ANSI and VT102 terminals. It has a
|
||||
dialing directory and auto zmodem download.
|
||||
|
||||
http://alioth.debian.org/projects/minicom
|
||||
|
||||
comment "minicom requires a toolchain with WCHAR support"
|
||||
depends on !BR2_USE_WCHAR
|
18
package/minicom/minicom.mk
Normal file
18
package/minicom/minicom.mk
Normal file
@ -0,0 +1,18 @@
|
||||
#############################################################
|
||||
#
|
||||
# minicom
|
||||
#
|
||||
#############################################################
|
||||
MINICOM_VERSION = 2.6
|
||||
MINICOM_SOURCE = minicom-$(MINICOM_VERSION).tar.gz
|
||||
MINICOM_SITE = http://alioth.debian.org/frs/download.php/3689/
|
||||
|
||||
# pkg-config is only used to check for liblockdev, which we don't have
|
||||
# in BR, so instead of adding host-pkg-config 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
|
||||
MINICOM_CONF_ENV = PKG_CONFIG=/bin/false
|
||||
|
||||
MINICOM_DEPENDENCIES = ncurses $(if $(BR2_ENABLE_LOCALE),,libiconv)
|
||||
|
||||
$(eval $(call AUTOTARGETS))
|
Loading…
Reference in New Issue
Block a user