adding bully

This commit is contained in:
Mike Brown 2014-12-09 05:20:50 -06:00
parent 5b88064245
commit eabcbacb1a
2 changed files with 41 additions and 0 deletions

16
aur/bully/.AURINFO Normal file
View file

@ -0,0 +1,16 @@
pkgbase = bully
pkgdesc = Retrieve WPA/WPA2 passphrase from a WPS enabled access point.
pkgver = 1.0.22
pkgrel = 2
url = https://github.com/bdpurcell/bully
arch = i686
arch = x86_64
license = GPL3
makedepends = make
depends = libpcap
depends = openssl
source = http://www6.frugalware.org/mirrors/linux/kali/kali/pool/main/b/bully/bully_1.0-22.orig.tar.gz
sha512sums = 2319a55d5ec79322463e6b2ad27af72a8177e82a079021eb17bf0cb0ebda50b0953cf6b17563f026ac93c06e05132e3821d887951da1f077b5d26a6adbecb667
pkgname = bully

25
aur/bully/PKGBUILD Normal file
View file

@ -0,0 +1,25 @@
# Maintainer: Lubomir 'Kuci' Kucera <kuci24-at-gmail-dot-com>
pkgname=bully
pkgver=1.0.22
pkgrel=2
pkgdesc="Retrieve WPA/WPA2 passphrase from a WPS enabled access point."
arch=('i686' 'x86_64')
url="https://github.com/bdpurcell/bully"
license=('GPL3')
depends=('libpcap' 'openssl')
makedepends=('make')
source=('http://www6.frugalware.org/mirrors/linux/kali/kali/pool/main/b/bully/bully_1.0-22.orig.tar.gz')
sha512sums=('2319a55d5ec79322463e6b2ad27af72a8177e82a079021eb17bf0cb0ebda50b0953cf6b17563f026ac93c06e05132e3821d887951da1f077b5d26a6adbecb667')
build() {
cd "$srcdir/bully/src"
make
}
package() {
cd "$srcdir/bully/src"
install -Dm755 "bully" "$pkgdir/usr/bin/bully"
}