wok view cowpatty/receipt @ rev 20700

updated afio (2.5.1 -> 2.5.2)
author Hans-G?nter Theisgen
date Tue Feb 05 17:01:36 2019 +0100 (2019-02-05)
parents 380ffe05937a
children 4bb30a43d4e7
line source
1 # SliTaz package receipt.
3 PACKAGE="cowpatty"
4 VERSION="4.6"
5 CATEGORY="network"
6 SHORT_DESC="Wireless WPA/WPA2 PSK handshake cracking utility."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tgz"
10 WEB_SITE="http://www.willhackforsushi.com/?page_id=50"
11 WGET_URL="http://www.willhackforsushi.com/code/$PACKAGE/$VERSION/$TARBALL"
13 DEPENDS="openssl libpcap"
14 BUILD_DEPENDS="openssl-dev libpcap-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 make -j 1 || return 1
20 make strip || return 1
21 make BINDIR="/usr/bin" DESTDIR="$DESTDIR" install
22 install -D -m644 dict $DESTDIR/usr/share/cowpatty/dict
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/share/cowpatty $fs/usr/share
31 }