From d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 1 Sep 2010 19:09:11 +0100 Subject: packages: Separate out most of the remaining packages into recipes Signed-off-by: Richard Purdie --- meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb (limited to 'meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb') diff --git a/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb b/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb new file mode 100644 index 000000000..af2db2310 --- /dev/null +++ b/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb @@ -0,0 +1,33 @@ +DESCRIPTION = "Tools for zmodem/xmodem/ymodem file transfer" +HOMEPAGE = "http://www.ohse.de/uwe/software/lrzsz.html" +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ + file://src/lrz.c;beginline=1;endline=10;md5=5276956373ff7d8758837f6399a1045f" +SECTION = "console/network" +PRIORITY = "standard" +DEPENDS = "" +PR = "r3" + +SRC_URI = "http://www.ohse.de/uwe/releases/lrzsz-${PV}.tar.gz \ + file://autotools.patch;patch=1 \ + file://makefile.patch;patch=1 \ + file://gettext.patch;patch=1" + +inherit autotools gettext + +do_install() { + install -d ${D}${bindir}/ + install -m 0755 src/lrz src/lsz ${D}${bindir}/ +} + +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 +} \ No newline at end of file -- cgit v1.2.3