diff options
author | Aurélien DESBRIÈRES <aurelien@hackers.camp> | 2014-06-10 14:12:24 +0200 |
---|---|---|
committer | Aurélien DESBRIÈRES <aurelien@hackers.camp> | 2014-06-10 14:12:24 +0200 |
commit | 1a4aeb92c3e7c51179a57a0cc8fb933bb56513e4 (patch) | |
tree | 7f8aa00dcc54cd69447b24f070b9e508f6911ad4 /pcr/cowpatty | |
parent | 06fa8fcaa86f113d3cadea0e7da5ead5975c3d09 (diff) | |
download | abslibre-1a4aeb92c3e7c51179a57a0cc8fb933bb56513e4.tar.gz abslibre-1a4aeb92c3e7c51179a57a0cc8fb933bb56513e4.tar.bz2 abslibre-1a4aeb92c3e7c51179a57a0cc8fb933bb56513e4.zip |
cowpatty
Diffstat (limited to 'pcr/cowpatty')
-rw-r--r-- | pcr/cowpatty/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/pcr/cowpatty/PKGBUILD b/pcr/cowpatty/PKGBUILD new file mode 100644 index 000000000..c29c53ad8 --- /dev/null +++ b/pcr/cowpatty/PKGBUILD @@ -0,0 +1,29 @@ +# Contributor (Arch) : CRT <crt.011@gmail.com> +# Contributor (Arch) : Sébastien Duquette <ekse.0x@gmail.com> +# Contributor (Arch) : icarus <icarus.roaming@gmail.com> +# Contributor (Arch) : Stephane Travostino <stephane.travostino@gmail.com> +# Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp> + +pkgname=cowpatty +pkgver=4.6 +pkgrel=5 +pkgdesc="Wireless WPA/WPA2 PSK handshake cracking utility" +arch=('i686' 'x86_64') +url="http://www.wirelessdefence.org/Contents/coWPAttyMain.htm" +license=('GPL') +depends=('openssl' 'libpcap') +options=('docs' '!makeflags') +source=("http://www.wirelessdefence.org/Contents/Files/cowpatty-$pkgver.tgz") + +build() { + cd "$srcdir/$pkgname-$pkgver" + make + make strip +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir/" BINDIR="/usr/bin/" install + install -D -m644 dict "$pkgdir"/usr/share/cowpatty/dict + install -D -m644 COPYING "$pkgdir"/usr/share/licenses/"$pkgname"/COPYING +} |