Skip to content

Commit

Permalink
eaphammer: style fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
noptrix committed Sep 25, 2024
1 parent daa78e7 commit dca35f1
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions packages/eaphammer/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,29 @@
pkgname=eaphammer
pkgver=v1.14.1.r0.g91e8956
pkgrel=1
epoch=1
pkgdesc='Targeted evil twin attacks against WPA2-Enterprise networks. Indirect wireless pivots using hostile portal attacks.'
groups=('blackarch' 'blackarch-wireless')
arch=('any')
url='https://github.com/s0lst1c3/eaphammer'
license=('GPL3')
depends=('python' 'python-tqdm' 'dnsmasq' 'libnfnetlink'
'libnl' 'openssl' 'python-pem' 'python-pyopenssl' 'apache' 'libpcap'
'curl' 'scapy' 'responder' 'hcxtools' 'hcxdumptool' 'python-beautifulsoup4'
'python-flask' 'python-flask-cors' 'python-flask-socketio' 'python-gevent'
'python-lxml' 'python-requests' 'python-pywebcopy')
depends=('python' 'python-tqdm' 'dnsmasq' 'libnfnetlink' 'libnl' 'openssl'
'python-pem' 'python-pyopenssl' 'apache' 'libpcap' 'curl' 'scapy'
'responder' 'hcxtools' 'hcxdumptool' 'python-beautifulsoup4'
'python-flask' 'python-flask-cors' 'python-flask-socketio'
'python-gevent' 'python-lxml' 'python-requests' 'python-pywebcopy')
makedepends=('git')
source=("git+https://github.com/s0lst1c3/$pkgname.git")
sha512sums=('SKIP')

pkgver() {
cd "$pkgname"
cd $pkgname

( set -o pipefail
git describe --long --tags --abbrev=7 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
git describe --long --tags --abbrev=7 2>/dev/null |
sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "%s.%s" "$(git rev-list --count HEAD)" \
"$(git rev-parse --short=7 HEAD)"
)
}

Expand Down

0 comments on commit dca35f1

Please sign in to comment.