packages/utils/less/Makefile
Josef Schlehofer 0ae161ecb6
less: add ALTERNATIVES
This package can not be installed if you have installed less from
busybox.

Collected errors:
 * check_data_file_clashes: Package less wants to install file /bin/less
        But that file is already provided by package  * busybox
 * opkg_install_cmd: Cannot install package less.

To avoid this error, I moved it from /bin/less to /usr/bin/less.

If you install it now, it changes symlink from busybox to /usr/bin/less
/bin/less -> busybox*
/bin/less -> /usr/bin/less*

When you remove it, it changes symlink back to busybox.

That's why postint and postrm scripts are no longer needed.

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2020-04-21 23:36:42 +02:00

82 lines
1.8 KiB
Makefile

#
# Copyright (C) 2010-2015 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:=530
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.greenwoodsoftware.com/less
PKG_HASH:=503f91ab0af4846f34f0444ab71c4b286123f0044a4964f1ae781486c617f2e2
PKG_LICENSE:=GPL-3.0
PKG_LICENSE_FILES:=COPYING
PKG_MAINTAINER:=Julen Landa Alustiza <julen@zokormazo.info>
PKG_CPE_ID:=cpe:/a:gnu:less
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/package.mk
define Package/less/Default
SECTION:=utils
CATEGORY:=Utilities
TITLE:=Pager program similar to more
URL:=http://www.greenwoodsoftware.com/less/
ALTERNATIVES:=200:/bin/less:/usr/bin/less
endef
define Package/less/Default/description
Full version of GNU less utility
endef
define Package/less
$(call Package/less/Default)
DEPENDS:=+libncurses
VARIANT:=narrow
endef
define Package/less/description
$(call Package/less/Default/description)
endef
define Package/less-wide
$(call Package/less/Default)
TITLE+= (Unicode)
DEPENDS:=+libncursesw
VARIANT:=wide
endef
define Package/less-wide/description
$(call Package/less/Default/description)
This package contains the Unicode enabled version of less.
endef
ifeq ($(BUILD_VARIANT),narrow)
CONFIGURE_VARS += \
ac_cv_lib_ncursesw_initscr=no
endif
ifeq ($(BUILD_VARIANT),wide)
CONFIGURE_VARS += \
ac_cv_lib_ncursesw_initscr=yes
endif
define Package/less/install
$(INSTALL_DIR) $(1)/usr/bin
$(CP) $(PKG_INSTALL_DIR)/usr/bin/less $(1)/usr/bin/less
endef
Package/less-wide/install = $(Package/less/install)
Package/less-wide/postinst = $(Package/less/postinst)
Package/less-wide/postrm = $(Package/less/postrm)
$(eval $(call BuildPackage,less))
$(eval $(call BuildPackage,less-wide))