mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 17:59:59 +00:00
c1ecd778ce
There have been a couple of releases since we last upgraded, including a number of additional features. Changelog is here: https://github.com/npat-efault/picocom/releases Also tweak SUMMARY - I don't think this has been 20k in a while; with this upgrade the binary alone went from 60k to 70k. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
26 lines
697 B
BlitzBasic
26 lines
697 B
BlitzBasic
SUMMARY = "Lightweight and minimal dumb-terminal emulation program"
|
|
SECTION = "console/utils"
|
|
LICENSE = "GPLv2+"
|
|
HOMEPAGE = "https://github.com/npat-efault/picocom"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3000e4830620e310fe65c0eb69df9e8a"
|
|
|
|
BASEPV = "3.1"
|
|
PV = "${BASEPV}+git${SRCPV}"
|
|
|
|
SRCREV = "90385aabe2b51f39fa130627d46b377569f82d4a"
|
|
|
|
SRC_URI = "git://github.com/npat-efault/picocom \
|
|
file://0001-Fix-building-with-musl.patch \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
EXTRA_OEMAKE = "'CC=${CC}' 'LD=${CC}' 'VERSION=${BASEPV}' \
|
|
'CFLAGS=${CFLAGS}' 'LDFLAGS=${LDFLAGS}' "
|
|
|
|
do_install () {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 ${BPN} pcasc pcxm pcym pczm ${D}${bindir}/
|
|
}
|
|
|