mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
b0d8a3d384
This commit converts plain HTTP URLs to HTTPS, and updates old or outdated URLs. Signed-off-by: Yanase Yuki <dev@zpc.st>
49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2010-2025 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:=less
|
|
PKG_VERSION:=685
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:= @GNU/less \
|
|
https://www.greenwoodsoftware.com/less
|
|
PKG_HASH:=2701041e767e697ee420ce0825641cedc8f20b51576abe99d92c1666d332e9dc
|
|
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
PKG_CPE_ID:=cpe:/a:gnu:less
|
|
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/less
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=Pager program similar to more
|
|
URL:=https://www.greenwoodsoftware.com/less/
|
|
ALTERNATIVES:=200:/usr/bin/less:/usr/libexec/less-gnu
|
|
DEPENDS:=+libncursesw
|
|
PROVIDES:=less-wide
|
|
endef
|
|
|
|
define Package/less/description
|
|
Full version of GNU less utility
|
|
endef
|
|
|
|
define Package/less/install
|
|
$(INSTALL_DIR) $(1)/usr/libexec
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/less $(1)/usr/libexec/less-gnu
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,less))
|