wok-6.x view cowpatty/receipt @ rev 20802

updated cowpatty (4.6 -> 4.8)
author Hans-G?nter Theisgen
date Fri Feb 15 17:40:45 2019 +0100 (2019-02-15)
parents 3132d67b7e38
children 95bd53a02010
line source
1 # SliTaz package receipt.
3 PACKAGE="cowpatty"
4 VERSION="4.8"
5 CATEGORY="network"
6 SHORT_DESC="Wireless WPA/WPA2 PSK handshake cracking utility."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.willhackforsushi.com/?page_id=50"
11 TARBALL="$PACKAGE-$VERSION.tgz"
12 WGET_URL="http://www.willhackforsushi.com/code/$PACKAGE/$VERSION/$TARBALL"
14 DEPENDS="openssl libpcap"
15 BUILD_DEPENDS="openssl-dev libpcap-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 make -j 1 || 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 }