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.

49 lines
1.3 KiB

  1. #
  2. # Copyright (C) 2007-2017 OpenWrt.org
  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:=django-restframework
  9. PKG_VERSION:=3.5.4
  10. PKG_RELEASE:=1
  11. PKG_LICENSE:=BSD-3-Clause
  12. PKG_SOURCE:=djangorestframework-$(PKG_VERSION).tar.gz
  13. PKG_SOURCE_URL:=https://pypi.python.org/packages/e9/24/86dfe19fb82a40a3d7a4c50371a8bd85b9277d3506698bf332a6d41d08f6/
  14. PKG_BUILD_DIR:=$(BUILD_DIR)/djangorestframework-$(PKG_VERSION)
  15. PKG_HASH:=f995a35ae22f354d2a9a42ee6d2c059c101f826b1485ed46781677895ad25ee5
  16. PKG_BUILD_DEPENDS:=python python-setuptools
  17. include $(INCLUDE_DIR)/package.mk
  18. $(call include_mk, python-package.mk)
  19. define Package/django-restframework
  20. SUBMENU:=Python
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. MAINTAINER:=Gergely Kiss <mail.gery@gmail.com>
  24. TITLE:=Web APIs for Django, made easy.
  25. URL:=http://www.django-rest-framework.org/
  26. DEPENDS:=+python +django
  27. endef
  28. define Package/django-restframework/description
  29. Web APIs for Django, made easy.
  30. endef
  31. define Build/Compile
  32. $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR))
  33. endef
  34. define Package/django-restframework/install
  35. $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
  36. $(CP) \
  37. $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
  38. $(1)$(PYTHON_PKG_DIR)
  39. endef
  40. $(eval $(call BuildPackage,django-restframework))