wok-6.x rev 7818
Add cowpatty. Wireless WPA/WPA2 PSK handshake cracking utility.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sat Dec 25 11:13:58 2010 +0000 (2010-12-25) |
parents | 8135f4172a69 |
children | 94764b90b40a |
files | cowpatty/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/cowpatty/receipt Sat Dec 25 11:13:58 2010 +0000 1.3 @@ -0,0 +1,31 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="cowpatty" 1.7 +VERSION="4.6" 1.8 +CATEGORY="network" 1.9 +SHORT_DESC="Wireless WPA/WPA2 PSK handshake cracking utility." 1.10 +MAINTAINER="slaxemulator@gmail.com" 1.11 +DEPENDS="openssl libpcap" 1.12 +BUILD_DEPENDS="openssl-dev libpcap-dev" 1.13 +TARBALL="$PACKAGE-$VERSION.tgz" 1.14 +WEB_SITE="http://www.willhackforsushi.com/?page_id=50" 1.15 +WGET_URL="http://www.willhackforsushi.com/code/$PACKAGE/$VERSION/$TARBALL" 1.16 + 1.17 +# Rules to configure and make the package. 1.18 +compile_rules() 1.19 +{ 1.20 + cd $src 1.21 + make || return 1 1.22 + make strip || return 1 1.23 + make BINDIR="/usr/bin" DESTDIR="$PWD/_pkg/" install 1.24 + install -D -m644 dict $PWD/_pkg/usr/share/cowpatty/dict 1.25 +} 1.26 + 1.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.28 +genpkg_rules() 1.29 +{ 1.30 + mkdir -p $fs/usr 1.31 + cp -a $_pkg/usr/bin $fs/usr 1.32 + cp -a $_pkg/usr/share/cowpatty $fs/usr/share 1.33 +} 1.34 +