wok view cowpatty/receipt @ rev 24104

updated acl and acl-dev (2.2.53 -> 2.3.1)
author Hans-G?nter Theisgen
date Sat Sep 25 17:16:35 2021 +0100 (2021-09-25)
parents 95bd53a02010
children b569b85b0fb9
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="https://github.com/joswr1ght/cowpatty"
11 TARBALL="$PACKAGE-$VERSION.tgz"
12 #WGET_URL="http://www.willhackforsushi.com/code/$PACKAGE/$VERSION/$TARBALL"
13 WGET_URL="https://github.com/joswr1ght/$PACKAGE/$VERSION/$TARBALL"
15 DEPENDS="openssl libpcap"
16 BUILD_DEPENDS="openssl-dev libpcap-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 make CC=gcc -j 1 || return 1
22 make strip CC=gcc || return 1
23 make BINDIR="/usr/bin" DESTDIR="$DESTDIR" CC=gcc install
24 install -D -m644 dict $DESTDIR/usr/share/cowpatty/dict
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/share/cowpatty $fs/usr/share
33 }