This updates to v0.12.21rc from 1999 (sic), which was never officially released. There're fixes in there, and it's what debian ships, so let's use that too. While at it, use debian's autohell hack and package description too. Patch 1 fixes a hang with musl. Patch 2 fixes CVE-2018-10195, add PKG_CPE_ID while at it. Refesh the rest. Fixes: CVE-2018-10195 Signed-off-by: Andre Heider <a.heider@gmail.com>
69 lines
1.8 KiB
Makefile
69 lines
1.8 KiB
Makefile
#
|
|
# Copyright (C) 2006-2016 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=lrzsz
|
|
PKG_VERSION:=0.12.21
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
|
|
PKG_SOURCE_URL:=@DEBIAN/pool/main/l/lrzsz/
|
|
PKG_HASH:=3262e5df47b108d33e184ff3bf5af14ddca1ac15118ac4ed9171a57c1593ae00
|
|
PKG_BUILD_DIR=$(BUILD_DIR)/lrzsz-990823
|
|
|
|
PKG_MAINTAINER:=Hsing-Wang Liao <kuoruan@gmail.com>
|
|
PKG_LICENSE:=GPL-2.0-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
PKG_CPE_ID:=cpe:/a:lrzsz_project
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/lrzsz
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=Tools for zmodem/xmodem/ymodem file transfer
|
|
URL:=https://ohse.de/uwe/software/lrzsz.html
|
|
endef
|
|
|
|
define Package/lrzsz/description
|
|
lrzsz is a cosmetically modified zmodem/ymodem/xmodem package built
|
|
from the public-domain version of Chuck Forsberg's rzsz package.
|
|
|
|
These programs use error correcting protocols ({z,x,y}modem) to send
|
|
(sz, sx, sb) and receive (rz, rx, rb) files over a dial-in serial port
|
|
from a variety of programs running under various operating systems.
|
|
endef
|
|
|
|
# to stop automake from running, the bundled autohell crap is too old
|
|
define Build/Configure
|
|
touch $(PKG_BUILD_DIR)/*
|
|
touch $(PKG_BUILD_DIR)/*/*
|
|
$(call Build/Configure/Default)
|
|
endef
|
|
|
|
define Package/lrzsz/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/lrz $(1)/usr/bin/
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/lsz $(1)/usr/bin/
|
|
(cd $(1)/usr/bin; \
|
|
ln -fs lrz lrx; \
|
|
ln -fs lrz lrb; \
|
|
ln -fs lrz rz; \
|
|
ln -fs lrz rx; \
|
|
ln -fs lrz rb; \
|
|
ln -fs lsz lsx; \
|
|
ln -fs lsz lsb; \
|
|
ln -fs lsz sz; \
|
|
ln -fs lsz sx; \
|
|
ln -fs lsz sb; \
|
|
);
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,lrzsz))
|