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.

36 lines
944 B

  1. # This is free software, licensed under the GNU General Public License v2.
  2. # See /LICENSE for more information.
  3. #
  4. include $(TOPDIR)/rules.mk
  5. PKG_NAME:=python-appdirs
  6. PKG_VERSION:=1.4.4
  7. PKG_RELEASE:=1
  8. PKG_MAINTAINER:=Karel Kočí <cynerd@email.cz>
  9. PYPI_NAME:=appdirs
  10. PKG_HASH:=7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41
  11. PKG_LICENSE:=MIT
  12. include ../pypi.mk
  13. include $(INCLUDE_DIR)/package.mk
  14. include ../python3-package.mk
  15. define Package/python3-appdirs
  16. SECTION:=lang
  17. CATEGORY:=Languages
  18. SUBMENU:=Python
  19. URL:=https://github.com/ActiveState/appdirs
  20. TITLE:=Determining platform-specific dirs
  21. DEPENDS:=+python3-light
  22. endef
  23. define Package/python-appdirs/description
  24. A small Python module for determining appropriate platform-specific
  25. dirs, e.g. a "user data dir".
  26. endef
  27. $(eval $(call Py3Package,python3-appdirs))
  28. $(eval $(call BuildPackage,python3-appdirs))
  29. $(eval $(call BuildPackage,python3-appdirs-src))