3d86d29bf0
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
24 lines
627 B
Makefile
24 lines
627 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
|
|
|
|
$(eval $(generic-package))
|