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.

33 lines
1.1 KiB

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=django-cors-headers
  3. PKG_VERSION:=3.10.0
  4. PKG_RELEASE:=$(AUTORELEASE)
  5. PYPI_NAME:=django-cors-headers
  6. PKG_HASH:=cd6f4360f5246569c149dc1c40c907c191f1ec45551e10d2a2e2e68512652f78
  7. PKG_MAINTAINER:=Peter Stadler <peter.stadler@student.uibk.ac.at>
  8. PKG_LICENSE:=MIT
  9. PKG_LICENSE_FILES:=LICENSE
  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/adamchainz/django-cors-headers
  19. DEPENDS:=+python3-django +python3-urllib +python3-light
  20. endef
  21. define Package/python3-django-cors-headers/description
  22. Django application for handling the server headers required for Cross-Origin Resource Sharing (CORS).
  23. endef
  24. $(eval $(call Py3Package,python3-django-cors-headers))
  25. $(eval $(call BuildPackage,python3-django-cors-headers))
  26. $(eval $(call BuildPackage,python3-django-cors-headers-src))