lrzsz: use update-alternatives (from OE)

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3000 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Marcin Juszkiewicz 2007-10-26 11:39:18 +00:00
parent 03b1d82252
commit 1d168a6b77
1 changed files with 13 additions and 7 deletions

View File

@ -3,7 +3,7 @@ SECTION = "console/network"
PRIORITY = "standard"
DESCRIPTION = "Tools for zmodem/xmodem/ymodem file transfer"
DEPENDS = ""
PR = "r2"
PR = "r3"
SRC_URI = "http://www.ohse.de/uwe/releases/lrzsz-${PV}.tar.gz \
file://autotools.patch;patch=1 \
@ -15,10 +15,16 @@ inherit autotools gettext
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
}
pkg_postinst() {
for util in rz rx rb sz sx sb; do
update-alternatives --install ${bindir}/$util $util lrz 100
done
}
pkg_postrm() {
for util in rz rx rb sz sx sb; do
update-alternatives --remove $util ${bindir}/lrz
done
}