aircrack-ng: add libcap to enable more utilities

Closes: #34380 [via git-merge-pr]
This commit is contained in:
Demedim 2021-12-04 13:05:40 +01:00 committed by Leah Neukirchen
parent 154287c26c
commit 36a9c112ae
2 changed files with 16 additions and 2 deletions

View file

@ -0,0 +1,14 @@
argv[1] is a file name argument, musl getopt_long will permute it
to a later position, so skip it for argument parsing.
--- aircrack-ng-1.6/src/airolib-ng/airolib-ng.c.orig
+++ aircrack-ng-1.6/src/airolib-ng/airolib-ng.c
@@ -1309,7 +1309,7 @@
signal(SIGTERM, sighandler);
option = getopt_long(
- argc, argv, "bc:d:e:hi:s:t:v:", long_options, &option_index);
+ argc-1, argv+1, "bc:d:e:hi:s:t:v:", long_options, &option_index);
if (option > 0)
{

View file

@ -1,10 +1,10 @@
# Template file for 'aircrack-ng'
pkgname=aircrack-ng
version=1.6
revision=3
revision=4
build_style=gnu-configure
hostmakedepends="automake libtool pkg-config"
makedepends="libnl3-devel openssl-devel sqlite-devel zlib-devel"
makedepends="libnl3-devel openssl-devel sqlite-devel zlib-devel libcap-devel"
short_desc="Complete suite of tools to assess WiFi network security"
maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-2.0-or-later, BSD-3-Clause, OpenSSL"