f7c5d92314
Tree is a recursive directory listing command that produces a depth indented listing of files. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
28 lines
682 B
Makefile
28 lines
682 B
Makefile
################################################################################
|
|
#
|
|
# tree
|
|
#
|
|
################################################################################
|
|
|
|
TREE_VERSION = 1.6.0
|
|
TREE_SOURCE = tree-$(TREE_VERSION).tgz
|
|
TREE_SITE = http://mama.indstate.edu/users/ice/tree/src/
|
|
TREE_LICENSE = GPLv2+
|
|
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
|
|
$(INSTALL) -D -m 0644 $(@D)/doc/tree.1 \
|
|
$(TARGET_DIR)/usr/share/man/man1/tree.1
|
|
endef
|
|
|
|
define TREE_CLEAN_CMDS
|
|
-$(MAKE) -C $(@D) clean
|
|
endef
|
|
|
|
$(eval $(generic-package))
|