Merge pull request #4853 from StevenHessing/noddos
[feed/packages.git] / lang / python / python-pcapy / Makefile
1 #
2 # Copyright (C) 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:=python-pcapy
11 PKG_VERSION:=0.11.1
12 PKG_RELEASE:=1
13 PKG_MAINTAINER:=Andrew McConachie <andrew@depht.com>
14 PKG_LICENSE:=Apache-1.1
15
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
17 PKG_MIRROR_HASH:=05c8d6978baa3512070ff4c041e5931384e702bbc2ac2c8063760176035958f1
18 PKG_SOURCE_PROTO:=git
19 PKG_SOURCE_URL:=https://github.com/CoreSecurity/pcapy.git
20 PKG_SOURCE_VERSION:=b91a418374d1636408c435f11799ef725ef70097
21 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
22
23 PKG_BUILD_DEPENDS:=python python-setuptools
24
25 include $(INCLUDE_DIR)/package.mk
26 $(call include_mk, python-package.mk)
27
28 define Package/python-pcapy
29 SECTION:=language-python
30 CATEGORY:=Languages
31 SUBMENU:=Python
32 TITLE:=python-pcapy
33 URL:=https://www.coresecurity.com/corelabs-research/open-source-tools/pcapy
34 DEPENDS:=+python +libpcap +libstdcpp
35 endef
36
37 define Package/python-pcapy/description
38 Pcapy is a Python extension module that interfaces with the libpcap packet capture library. Pcapy enables python scripts to capture packets on the network. Pcapy is highly effective when used in conjunction with a packet-handling package such as Impacket, which is a collection of Python classes for constructing and dissecting network packets.
39 endef
40
41 define Build/Compile
42 $(call Build/Compile/PyMod,,\
43 install --prefix=/usr --root="$(PKG_INSTALL_DIR)" \
44 )
45 endef
46
47 $(eval $(call PyPackage,python-pcapy))
48 $(eval $(call BuildPackage,python-pcapy))