mirror of
https://github.com/openwrt/packages.git
synced 2025-12-10 12:41:22 +00:00
Remove maintainer. Update copyright date. Changelog: https://greenwoodsoftware.com/less/news.663.html Changelog: https://greenwoodsoftware.com/less/news.665.html Changelog: https://greenwoodsoftware.com/less/news.666.html Changelog: https://greenwoodsoftware.com/less/news.667.html Changelog: https://greenwoodsoftware.com/less/news.668.html Changelog: https://greenwoodsoftware.com/less/news.674.html Changelog: https://greenwoodsoftware.com/less/news.676.html Changelog: https://greenwoodsoftware.com/less/news.678.html Changelog: https://greenwoodsoftware.com/less/news.679.html Changelog: https://greenwoodsoftware.com/less/news.683.html Changelog: https://greenwoodsoftware.com/less/news.684.html Changelog: https://greenwoodsoftware.com/less/news.685.html Signed-off-by: George Sapkin <george@sapk.in>
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 \
|
|
http://www.greenwoodsoftware.com/less
|
|
PKG_HASH:=2701041e767e697ee420ce0825641cedc8f20b51576abe99d92c1666d332e9dc
|
|
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
PKG_MAINTAINER:=
|
|
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:=http://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))
|