lrzsz_0.12.20.bb 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. SUMMARY = "Tools for zmodem/xmodem/ymodem file transfer"
  2. DESCRIPTION = "Lrzsz is a cosmetically modified zmodem/ymodem/xmodem package built from \
  3. the public-domain version of Chuck Forsberg's rzsz package. \
  4. These programs use error correcting protocols ({z,x,y}modem) to send (sz, sx, sb) and \
  5. receive (rz, rx, rb) files over a dial-in serial port from a variety of programs \
  6. running under various operating systems. "
  7. HOMEPAGE = "http://www.ohse.de/uwe/software/lrzsz.html"
  8. LICENSE = "GPL-2.0-or-later"
  9. LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \
  10. file://src/lrz.c;beginline=1;endline=10;md5=5276956373ff7d8758837f6399a1045f"
  11. SECTION = "console/network"
  12. DEPENDS = ""
  13. SRC_URI = "https://www.ohse.de/uwe/releases/lrzsz-${PV}.tar.gz \
  14. file://autotools-update.patch \
  15. file://autotools.patch \
  16. file://makefile.patch \
  17. file://lrzsz-check-locale.h.patch \
  18. file://cve-2018-10195.patch \
  19. file://include.patch \
  20. file://0001-Fix-cross-compilation-using-autoconf-detected-AR.patch \
  21. file://0001-Fix-build-with-GCC-15.patch \
  22. "
  23. SRC_URI[sha256sum] = "c28b36b14bddb014d9e9c97c52459852f97bd405f89113f30bee45ed92728ff1"
  24. UPSTREAM_CHECK_URI = "http://ohse.de/uwe/software/lrzsz.html"
  25. inherit autotools gettext
  26. do_install() {
  27. install -d ${D}${bindir}/
  28. install -m 0755 src/lrz src/lsz ${D}${bindir}/
  29. }
  30. inherit update-alternatives
  31. ALTERNATIVE_PRIORITY = "100"
  32. ALTERNATIVE:${PN} = "rz rx rb sz sx sb"
  33. ALTERNATIVE_TARGET[rz] = "${bindir}/lrz"
  34. ALTERNATIVE_TARGET[rx] = "${bindir}/lrz"
  35. ALTERNATIVE_TARGET[rb] = "${bindir}/lrz"
  36. ALTERNATIVE_TARGET[sz] = "${bindir}/lsz"
  37. ALTERNATIVE_TARGET[sx] = "${bindir}/lsz"
  38. ALTERNATIVE_TARGET[sb] = "${bindir}/lsz"
  39. # http://errors.yoctoproject.org/Errors/Details/766929/
  40. # lrzsz-0.12.20/src/tcp.c:75:56: error: passing argument 3 of 'getsockname' from incompatible pointer type [-Wincompatible-pointer-types]
  41. # lrzsz-0.12.20/src/tcp.c:83:52: error: passing argument 3 of 'getsockname' from incompatible pointer type [-Wincompatible-pointer-types]
  42. # lrzsz-0.12.20/src/tcp.c:103:51: error: passing argument 3 of 'accept' from incompatible pointer type [-Wincompatible-pointer-types]
  43. CFLAGS += "-Wno-error=incompatible-pointer-types"