Commit fbc4463d authored by Vicente Olivert Riera's avatar Vicente Olivert Riera Committed by Thomas Petazzoni
Browse files

picocom: bump to version 2.0



- Bump to version 2.0
- Switch the download site to GitHub
- Apply an upstream patch to fix a missing define
- Add a hash file
- Rewrap the help text to 72 characters length
- Change the official website

[Thomas: fix s/MAKE_ENV/TARGET_MAKE_ENV/.]

Signed-off-by: default avatarVicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 3c1a1c15
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -2,8 +2,7 @@ config BR2_PACKAGE_PICOCOM
	bool "picocom"
	depends on BR2_USE_MMU # fork()
	help
	  picocom is a minimal dumb-terminal emulation program. It
	  is, in principle, very much like minicom, only it's pico
	  instead of mini!
	  picocom is a minimal dumb-terminal emulation program. It is, in
	  principle, very much like minicom, only it's pico instead of mini!

	  http://code.google.com/p/picocom/
	  https://github.com/npat-efault/picocom/
+3 −0
Original line number Diff line number Diff line
# Locally calculated
sha256 e0f7095c118f43c1c09787a16ef5c7d4c4ad4457dd3b1281efcc4cdb8906af9a  picocom-2.0.tar.gz
sha256 37746613c05ecf4058c989ef7042b85ef0308886f3731a9dfffdadd19cc9ecfb  2c4c2317592daac97aac6669fd7b68e07a3dbec6.patch
+4 −3
Original line number Diff line number Diff line
@@ -4,13 +4,14 @@
#
################################################################################

PICOCOM_VERSION = 1.7
PICOCOM_SITE = http://picocom.googlecode.com/files
PICOCOM_VERSION = 2.0
PICOCOM_SITE = $(call github,npat-efault,picocom,$(PICOCOM_VERSION))
PICOCOM_LICENSE = GPLv2+
PICOCOM_LICENSE_FILES = LICENSE.txt
PICOCOM_PATCH = https://github.com/npat-efault/picocom/commit/2c4c2317592daac97aac6669fd7b68e07a3dbec6.patch

define PICOCOM_BUILD_CMDS
	$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
	$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
endef

define PICOCOM_INSTALL_TARGET_CMDS