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.

47 lines
1.1 KiB

  1. #
  2. # Copyright (C) 2015-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:=txsocksx
  9. PKG_VERSION:=1.15.0.2
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://pypi.python.org/packages/source/t/txsocksx
  13. PKG_HASH:=4f79b5225ce29709bfcee45e6f726e65b70fd6f1399d1898e54303dbd6f8065f
  14. PKG_LICENSE:=ISC
  15. PKG_LICENSE_FILES:=COPYING
  16. PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
  17. include $(INCLUDE_DIR)/package.mk
  18. $(call include_mk, python-package.mk)
  19. define Package/python-txsocksx
  20. SECTION:=lang
  21. CATEGORY:=Languages
  22. SUBMENU:=Python
  23. TITLE:=python-txsocksx
  24. URL:=https://github.com/habnabit/txsocksx
  25. DEPENDS:=+python-light +python-parsley +twisted
  26. endef
  27. define Package/python-txsocksx/description
  28. txsocksx is SOCKS4/4a and SOCKS5 client endpoints for Twisted 10.1 or
  29. greater.
  30. endef
  31. define Build/Compile
  32. $(call Build/Compile/PyMod,, \
  33. install --prefix="/usr" --root="$(PKG_INSTALL_DIR)", \
  34. PKG_VERSION="$(PKG_VERSION)" \
  35. )
  36. endef
  37. $(eval $(call PyPackage,python-txsocksx))
  38. $(eval $(call BuildPackage,python-txsocksx))