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.

34 lines
1.0 KiB

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=django-cors-headers
  3. PKG_VERSION:=3.2.1
  4. PKG_RELEASE:=2
  5. PYPI_NAME:=django-cors-headers
  6. PKG_HASH:=a5960addecc04527ab26617e51b8ed42f0adab4594b24bb0f3c33e2bd3857c3f
  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:=+django +python3-urllib +python3-light
  20. VARIANT:=python3
  21. endef
  22. define Package/python3-django-cors-headers/description
  23. Django application for handling the server headers required for Cross-Origin Resource Sharing (CORS).
  24. endef
  25. $(eval $(call Py3Package,python3-django-cors-headers))
  26. $(eval $(call BuildPackage,python3-django-cors-headers))
  27. $(eval $(call BuildPackage,python3-django-cors-headers-src))