1
0

Makefile 785 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #
  2. # Copyright (C) 2016 Openwrt.org
  3. #
  4. # This is free software, licensed under the Apache License, Version 2.0 .
  5. #
  6. include $(TOPDIR)/rules.mk
  7. PKG_NAME:=luci-app-aria2
  8. # Version == major.minor.patch
  9. # increase "minor" on new functionality and "patch" on patches/optimization
  10. PKG_VERSION:=1.0.1
  11. # Release == build
  12. # increase on changes of translation files
  13. PKG_RELEASE:=2
  14. PKG_LICENSE:=Apache-2.0
  15. PKG_MAINTAINER:=Hsing-Wang Liao <kuoruan@gmail.com>
  16. # LuCI specific settings
  17. LUCI_TITLE:=LuCI Support for Aria2
  18. LUCI_DEPENDS:=+aria2
  19. LUCI_PKGARCH:=all
  20. define Package/$(PKG_NAME)/config
  21. # shown in make menuconfig <Help>
  22. help
  23. $(LUCI_TITLE)
  24. .
  25. Version: $(PKG_VERSION)-$(PKG_RELEASE)
  26. $(PKG_MAINTAINER)
  27. endef
  28. include ../../luci.mk
  29. # call BuildPackage - OpenWrt buildroot signature