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