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.

42 lines
1.1 KiB

  1. #
  2. # This is free software, licensed under the GNU General Public License v2.
  3. # See /LICENSE for more information.
  4. #
  5. include $(TOPDIR)/rules.mk
  6. PKG_NAME:=django-formtools
  7. PKG_VERSION:=2.2
  8. PKG_RELEASE:=1
  9. PYPI_NAME:=$(PKG_NAME)
  10. PKG_HASH:=c5272c03c1cd51b2375abf7397a199a3148a9fbbf2f100e186467a84025d13b2
  11. PKG_MAINTAINER:=Eneas U de Queiroz <cotequeiroz@gmail.com>
  12. PKG_LICENSE:=BSD-3-Clause
  13. PKG_LICENSE_FILES:=LICENSE
  14. include ../pypi.mk
  15. include $(INCLUDE_DIR)/package.mk
  16. include ../python3-package.mk
  17. define Package/python3-django-formtools
  18. SUBMENU:=Python
  19. SECTION:=lang
  20. CATEGORY:=Languages
  21. TITLE:=High-level abstractions for Django forms
  22. URL:=https://django-formtools.readthedocs.io
  23. DEPENDS:= \
  24. @BROKEN \
  25. +python3 \
  26. +python3-django1
  27. endef
  28. define Package/python3-django-formtools/description
  29. Django "formtools" is a set of high-level abstractions for Django forms.
  30. Currently for form previews and multi-step forms.
  31. endef
  32. $(eval $(call Py3Package,python3-django-formtools))
  33. $(eval $(call BuildPackage,python3-django-formtools))
  34. $(eval $(call BuildPackage,python3-django-formtools-src))