Skip to content
This repository has been archived by the owner on Mar 17, 2018. It is now read-only.

Commit

Permalink
tree package added
Browse files Browse the repository at this point in the history
  • Loading branch information
ryzhovau committed May 25, 2016
1 parent b38ac62 commit c721f99
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions tree/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#
# Copyright (C) 2016 Entware
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=tree
PKG_VERSION:=1.7.0
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=ftp://mama.indstate.edu/linux/tree
PKG_MD5SUM:=abe3e03e469c542d8e157cdd93f4d8a6

include $(INCLUDE_DIR)/package.mk

define Package/tree
SECTION:=utils
CATEGORY:=Utilities
TITLE:=recursive directory listing
URL:=http://mama.indstate.edu/users/ice/tree/
MAINTAINER:=Entware team, http://entware.net
endef

define Package/tree/description
Tree is a recursive directory listing command that produces a depth indented
listing of files, which is colorized ala dircolors.
endef

define Package/tree/install
$(INSTALL_DIR) $(1)/opt/bin
$(CP) $(PKG_BUILD_DIR)/tree $(1)/opt/bin
endef

$(eval $(call BuildPackage,tree))

0 comments on commit c721f99

Please sign in to comment.