Makefile 624 B

1234567891011121314151617181920212223242526272829303132333435
  1. #
  2. # Copyright (C) 2025 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:=cli
  9. PKG_RELEASE:=14
  10. PKG_LICENSE:=GPL-2.0
  11. PKG_MAINTAINER:=Felix Fietkau <[email protected]>
  12. include $(INCLUDE_DIR)/package.mk
  13. define Package/cli
  14. SECTION:=utils
  15. CATEGORY:=Utilities
  16. TITLE:=OpenWrt CLI
  17. DEPENDS:=+ucode +ucode-mod-uline \
  18. +ucode-mod-ubus +ucode-mod-uloop \
  19. +ucode-mod-fs +ucode-mod-rtnl
  20. endef
  21. define Build/Compile
  22. :
  23. endef
  24. define Package/cli/install
  25. $(CP) ./files/* $(1)/
  26. endef
  27. $(eval $(call BuildPackage,cli))