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.

39 lines
904 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=awscli
  3. PKG_VERSION:=1.16.75
  4. PKG_RELEASE:=2
  5. PYPI_NAME:=$(PKG_NAME)
  6. PKG_HASH:=8d96ec0de325ea8271cc6aa95b7392bbf548ec4aabd3ffbcdc0619b64edd4a45
  7. PKG_MAINTAINER:=Daniel Danzberger <daniel@dd-wrt.com>
  8. PKG_LICENSE:=MIT
  9. include ../pypi.mk
  10. include $(INCLUDE_DIR)/package.mk
  11. include ../python3-package.mk
  12. define Package/python3-awscli
  13. SUBMENU:=Python
  14. SECTION:=lang
  15. CATEGORY:=Languages
  16. TITLE:=awscli
  17. URL:=https://github.com/aws/aws-cli
  18. DEPENDS:=+python3 \
  19. +python3-yaml \
  20. +python3-pyasn1 \
  21. +python3-botocore \
  22. +python3-rsa \
  23. +python3-colorama \
  24. +python3-docutils \
  25. +python3-s3transfer
  26. endef
  27. define Package/python3-awscli/description
  28. This package provides a unified command line interface to Amazon Web Services.
  29. endef
  30. $(eval $(call Py3Package,python3-awscli))
  31. $(eval $(call BuildPackage,python3-awscli))
  32. $(eval $(call BuildPackage,python3-awscli-src))