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.

50 lines
1.3 KiB

  1. #
  2. # Copyright (C) Alexandru Ardelean <ardeleanalex@gmail.com>
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=django1
  9. PKG_VERSION:=1.11.29
  10. PKG_RELEASE:=4
  11. PYPI_NAME:=Django
  12. PKG_HASH:=4200aefb6678019a0acf0005cd14cfce3a5e6b9b90d06145fcdd2e474ad4329c
  13. PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
  14. PKG_LICENSE:=BSD-3-Clause
  15. PKG_LICENSE_FILES:=LICENSE LICENSE.python
  16. PKG_CPE_ID:=cpe:/a:djangoproject:django
  17. include ../pypi.mk
  18. include $(INCLUDE_DIR)/package.mk
  19. include ../python3-package.mk
  20. define Package/python3-django1
  21. SUBMENU:=Python
  22. SECTION:=lang
  23. CATEGORY:=Languages
  24. TITLE:=The web framework for perfectionists with deadlines.
  25. URL:=https://www.djangoproject.com/
  26. DEPENDS:= \
  27. +python3 \
  28. +python3-pytz
  29. PROVIDES:=django
  30. endef
  31. define Package/python3-django1/description
  32. The web framework for perfectionists with deadlines (LTS 1.11 series).
  33. endef
  34. define Py3Package/python3-django1/install
  35. $(INSTALL_DIR) $(1)/usr/bin
  36. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/django-admin.py \
  37. $(1)/usr/bin/django-admin
  38. endef
  39. $(eval $(call Py3Package,python3-django1))
  40. $(eval $(call BuildPackage,python3-django1))
  41. $(eval $(call BuildPackage,python3-django1-src))