nginx: bump to 1.26.1 release
[feed/packages.git] / net / scapy / Makefile
1 #
2 # Copyright (C) 2006-2015 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:=scapy
11 PKG_VERSION:=2.5.0
12 PKG_RELEASE:=1
13
14 PYPI_NAME:=$(PKG_NAME)
15 PKG_HASH:=5b260c2b754fd8d409ba83ee7aee294ecdbb2c235f9f78fe90bc11cb6e5debc2
16
17 PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
18 PKG_LICENSE:=GPL-2.0-only
19 PKG_LICENSE_FILES:=LICENSE
20 PKG_CPE_ID:=cpe:/a:scapy:scapy
21
22 include ../../lang/python/pypi.mk
23 include $(INCLUDE_DIR)/package.mk
24 include ../../lang/python/python3-package.mk
25
26 define Package/scapy
27 SECTION:=net
28 CATEGORY:=Network
29 TITLE:=Interactive packet manipulation tool and network scanner
30 URL:=https://scapy.net/
31 DEPENDS:=+python3
32 endef
33
34 define Package/scapy/description
35 Scapy is a powerful interactive packet manipulation program built on top
36 of the Python interpreter. It can be used to forge or decode packets of
37 a wide number of protocols, send them over the wire, capture them, match
38 requests and replies, and much more.
39 endef
40
41 $(eval $(call Py3Package,scapy))
42 $(eval $(call BuildPackage,scapy))
43 $(eval $(call BuildPackage,scapy-src))