mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
dcf31c6a1e
--------- Co-authored-by: tiopex <tiopxyz@gmail.com> Co-authored-by: tiopex <67048640+tiopex@users.noreply.github.com>
19 lines
517 B
Makefile
19 lines
517 B
Makefile
################################################################################
|
|
#
|
|
# less
|
|
#
|
|
################################################################################
|
|
|
|
LESS_VERSION = 487
|
|
LESS_SITE = $(BR2_GNU_MIRROR)/less
|
|
LESS_LICENSE = GPL-3.0+
|
|
LESS_LICENSE_FILES = COPYING
|
|
# Build after busybox, full-blown is better
|
|
LESS_DEPENDENCIES = ncurses $(if $(BR2_PACKAGE_BUSYBOX),busybox)
|
|
|
|
define LESS_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 $(@D)/less $(TARGET_DIR)/usr/bin/less
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|