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