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.

35 lines
1.1 KiB

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=django-cors-headers
  3. PKG_VERSION:=3.1.1
  4. PKG_RELEASE:=1
  5. PYPI_NAME:=django-cors-headers
  6. PKG_HASH:=5762ec9c2d59f38c76828dc1d4308baca4bc0d3e1d6f217683e7a24a1c4611a3
  7. PKG_LICENSE:=MIT
  8. PKG_LICENSE_FILES:=LICENSE
  9. PKG_MAINTAINER:=Peter Stadler <peter.stadler@student.uibk.ac.at>
  10. include ../pypi.mk
  11. include $(INCLUDE_DIR)/package.mk
  12. include ../python3-package.mk
  13. define Package/python3-django-cors-headers
  14. SUBMENU:=Python
  15. SECTION:=lang
  16. CATEGORY:=Languages
  17. TITLE:=Django application for handling the server headers required for Cross-Origin Resource Sharing (CORS).
  18. URL:=https://github.com/ottoyiu/django-cors-headers
  19. DEPENDS:=python3-django +python3-urllib +python3-light
  20. VARIANT:=python3
  21. MDEPENDS:=python3-django
  22. endef
  23. define Package/python3-django-cors-headers/description
  24. Django application for handling the server headers required for Cross-Origin Resource Sharing (CORS).
  25. endef
  26. $(eval $(call Py3Package,python3-django-cors-headers))
  27. $(eval $(call BuildPackage,python3-django-cors-headers))
  28. $(eval $(call BuildPackage,python3-django-cors-headers-src))