Advertisement
boriss

Untitled

Jan 24th, 2023
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | Software | 0 0
  1. #
  2. # Copyright (c) 2015 Quatanium Co., Ltd.
  3. #
  4. # Based on copyright (C) 2008-2010 openwrt
  5. #
  6. # This is free software, licensed under the GNU General Public License v2.
  7. # License: http://www.gnu.org/licenses/gpl.html GPL version v2.
  8. #
  9.  
  10. include $(TOPDIR)/rules.mk
  11.  
  12. PKG_NAME:=gevent
  13. PKG_VERSION:=22.10.2
  14. PKG_RELEASE:=1
  15.  
  16. PKG_SOURCE:=gevent-$(PKG_VERSION).tar.gz
  17. PKG_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)-$(PKG_VERSION)/
  18.  
  19. include ../pypi.mk
  20. include $(INCLUDE_DIR)/package.mk
  21. include ../python3-package.mk
  22. PKG_USE_MIPS16:=0
  23.  
  24. define Package/python3-gevent
  25. SUBMENU:=Python
  26. SECTION:=lang
  27. CATEGORY:=Languages
  28. TITLE:=gevent
  29. URL:=https://github.com/gevent/gevent
  30. DEPENDS:= +python3-ctypes
  31. endef
  32.  
  33. define Package/python3-gevent/description
  34. Gevent
  35. endef
  36.  
  37. $(eval $(call Py3Package,python3-gevent))
  38. $(eval $(call BuildPackage,python3-gevent))
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement