initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
config BR2_PACKAGE_TREE
|
||||
bool "tree"
|
||||
depends on BR2_USE_WCHAR
|
||||
help
|
||||
Tree is a recursive directory listing command that produces
|
||||
a depth indented listing of files, which is colorized ala
|
||||
dircolors if the LS_COLORS environment variable is set and
|
||||
output is to tty.
|
||||
|
||||
http://mama.indstate.edu/users/ice/tree/
|
||||
|
||||
comment "tree needs a toolchain w/ wchar"
|
||||
depends on !BR2_USE_WCHAR
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 715d5d4b434321ce74706d0dd067505bb60c5ea83b5f0b3655dae40aa6f9b7c2 tree-1.8.0.tgz
|
||||
sha256 204d8eff92f95aac4df6c8122bc1505f468f3a901e5a4cc08940e0ede1938994 LICENSE
|
||||
@@ -0,0 +1,21 @@
|
||||
################################################################################
|
||||
#
|
||||
# tree
|
||||
#
|
||||
################################################################################
|
||||
|
||||
TREE_VERSION = 1.8.0
|
||||
TREE_SOURCE = tree-$(TREE_VERSION).tgz
|
||||
TREE_SITE = http://mama.indstate.edu/users/ice/tree/src
|
||||
TREE_LICENSE = GPL-2.0+
|
||||
TREE_LICENSE_FILES = LICENSE
|
||||
|
||||
define TREE_BUILD_CMDS
|
||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
||||
endef
|
||||
|
||||
define TREE_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -D -m 0755 $(@D)/tree $(TARGET_DIR)/usr/bin/tree
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user