Makefile 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #
  2. # Copyright (C) 2007-2016 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:=gunicorn
  9. PKG_VERSION:=19.6.0
  10. PKG_RELEASE=1
  11. PKG_LICENSE:=MIT
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  13. PKG_SOURCE_URL:=https://pypi.python.org/packages/84/ce/7ea5396efad1cef682bbc4068e72a0276341d9d9d0f501da609fab9fcb80/
  14. PKG_MD5SUM:=338e5e8a83ea0f0625f768dba4597530
  15. PKG_BUILD_DEPENDS:=python python-setuptools
  16. include $(INCLUDE_DIR)/package.mk
  17. $(call include_mk, python-package.mk)
  18. define Package/gunicorn
  19. SUBMENU:=Python
  20. SECTION:=lang
  21. CATEGORY:=Languages
  22. TITLE:=WSGI HTTP Server for UNIX
  23. MAINTAINER:=Gergely Kiss <mail.gery@gmail.com>
  24. URL:=http://gunicorn.org/
  25. DEPENDS:=+python +python-setuptools
  26. endef
  27. define Package/gunicorn/description
  28. WSGI HTTP Server for UNIX
  29. endef
  30. define Build/Compile
  31. $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR))
  32. endef
  33. define Package/gunicorn/install
  34. $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
  35. $(INSTALL_DIR) $(1)/usr/bin
  36. $(CP) \
  37. $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
  38. $(1)$(PYTHON_PKG_DIR)
  39. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gunicorn* \
  40. $(1)/usr/bin
  41. # fix python exec path in scripts
  42. $(SED) 's/#!.*/#!\/usr\/bin\/python/g' $(1)/usr/bin/gunicorn*
  43. endef
  44. $(eval $(call BuildPackage,gunicorn))