packages: coova-chilli: 1.2.9 version bump
[openwrt/svn-archive/archive.git] / net / pyrit / Makefile
1 #
2 # Copyright (C) 2011 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:=pyrit
11 PKG_VERSION:=0.4.0
12 PKG_RELEASE:=1
13
14 PKG_SOURCE_URL:=http://pyrit.googlecode.com/files
15 PKG_SOURCE:=pyrit-0.4.0.tar.gz
16 PKG_MD5SUM:=7258b6f3dacfb09736ddeed2a379df2d
17
18 include $(INCLUDE_DIR)/package.mk
19 $(call include_mk, python-package.mk)
20
21 define Package/pyrit
22 SECTION:=net
23 CATEGORY:=Network
24 DEPENDS:=+python +libopenssl +libpcap
25 TITLE:=A GPGPU-driven WPA/WPA2-PSK key cracker
26 URL:=http://code.google.com/p/pyrit/
27 endef
28
29 define Package/pyrit/description
30 A GPGPU-driven WPA/WPA2-PSK key cracker
31 Pyrit exploits the computational power of many-core- and GPGPU-
32 -platforms to create massive databases, pre-computing part of the
33 WPA/WPA2-PSK authentication phase in a space-time tradeoff.
34 It is a powerful attack against one of the world's most used security
35 protocols
36 endef
37
38 define Build/Compile
39 $(call Build/Compile/PyMod,., \
40 install --prefix="/usr" --root="$(PKG_INSTALL_DIR)" \
41 )
42 endef
43
44 define Package/pyrit/install
45 $(INSTALL_DIR) $(1)
46 $(CP) $(PKG_INSTALL_DIR)/* $(1)/
47 endef
48
49 $(eval $(call BuildPackage,pyrit))