You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
874 B

  1. #
  2. # Copyright (C) 2017 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=tree
  9. PKG_RELEASE:=2
  10. PKG_VERSION:=1.7.0
  11. PKG_SOURCE_URL:=ftp://mama.indstate.edu/linux/tree/
  12. PKG_HASH:=6957c20e82561ac4231638996e74f4cfa4e6faabc5a2f511f0b4e3940e8f7b12
  13. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
  14. PKG_MAINTAINER:=Banglang Huang <banglang.huang@foxmail.com>
  15. include $(INCLUDE_DIR)/package.mk
  16. define Package/tree
  17. SECTION:=utils
  18. CATEGORY:=Utilities
  19. TITLE:=List contents of directories in a tree-like format
  20. DEPENDS:=+libc +libgcc
  21. endef
  22. MAKE_FLAGS += \
  23. CFLAGS="$(TARGET_CFLAGS)" \
  24. LDFLAGS="$(TARGET_LDFLAGS)"
  25. define Package/tree/install
  26. $(INSTALL_DIR) $(1)/usr/sbin
  27. $(INSTALL_BIN) $(PKG_BUILD_DIR)/tree $(1)/usr/sbin/
  28. endef
  29. $(eval $(call BuildPackage,tree))