blob: e10e1863f16c256327c1182cf77d17d8008edbed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DESCRIPTION = "Lightweight and minimal (~20K) dumb-terminal emulation program."
SECTION = "console/utils"
PRIORITY = "optional"
LICENSE = "GPL"
PR = "r2"
SRC_URI = "http://efault.net/npat/hacks/picocom/dist/picocom-${PV}.tar.gz \
file://nolock.patch;apply=yes \
file://gcc4.patch;apply=yes"
CFLAGS_append = ' -DVERSION_STR=\\"${PV}\\"'
do_install () {
install -d ${D}${bindir}
install -m 0755 ${PN} pcasc pcxm pcym pczm ${D}${bindir}/
}
SRC_URI[md5sum] = "08fcc5f6bb9e7676a2569386d5ea9f70"
SRC_URI[sha256sum] = "437c5fac2376e416b4427501d1b074da5aa6b8fea756a0d61aec22686f025721"
|