blob: b7838a7cde942dda4397e5bfe74ed6d4c90c01a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
SECTION = "base"
PRIORITY = "standard"
DESCRIPTION = "Tools for zmodem/xmodem/ymodem file transfer"
PR = "r1"
SRC_URI = "http://www.ohse.de/uwe/releases/lrzsz-${PV}.tar.gz \
file://autotools.patch;patch=1 \
file://makefile.patch;patch=1 \
file://m4.patch;patch=1 \
file://po-fix.patch;patch=1"
inherit autotools
do_install() {
install -d ${D}/${bindir}/
install -m 0755 src/lrz src/lsz ${D}/${bindir}/
ln -sf ./lrz ${D}/${bindir}/rz
ln -sf ./lrz ${D}/${bindir}/rx
ln -sf ./lrz ${D}/${bindir}/rb
ln -sf ./lsz ${D}/${bindir}/sz
ln -sf ./lsz ${D}/${bindir}/sx
ln -sf ./lsz ${D}/${bindir}/sb
}
|