wok view cowpatty/receipt @ rev 18923

Up: description files: Bc, blinder, bluefish, chrommo, tuffy, unifont
author Leonardo Laporte <hackdorte@sapo.pt>
date Thu Feb 25 08:34:30 2016 -0300 (2016-02-25)
parents 18ed3d5d2389
children 3132d67b7e38
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 cd $src
20 make || return 1
21 make strip || return 1
22 make BINDIR="/usr/bin" DESTDIR="$DESTDIR" install
23 install -D -m644 dict $DESTDIR/usr/share/cowpatty/dict
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/share/cowpatty $fs/usr/share
32 }