mirror of
https://github.com/termux/termux-packages.git
synced 2025-03-04 04:48:55 +00:00
Removing maintainers if there was no activity after pull request merging or if there was no activity in the last two years [no ci]
33 lines
1.2 KiB
Bash
33 lines
1.2 KiB
Bash
# root-packages
|
|
TERMUX_PKG_HOMEPAGE="https://www.aircrack-ng.org/"
|
|
TERMUX_PKG_DESCRIPTION="WiFi security auditing tools suite"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=3:1.7
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=https://github.com/aircrack-ng/aircrack-ng/archive/refs/tags/${TERMUX_PKG_VERSION:2}.tar.gz
|
|
TERMUX_PKG_SHA256=05a704e3c8f7792a17315080a21214a4448fd2452c1b0dd5226a3a55f90b58c3
|
|
TERMUX_PKG_DEPENDS="libc++, libnl, libpcap, libsqlite, openssl, pcre, zlib, iw, ethtool"
|
|
# static build gives errors:
|
|
# error: undefined reference to 'ac_crypto_engine_init'
|
|
# error: cannot find the library 'libaircrack-ce-wpa.la' or unhandled argument 'libaircrack-ce-wpa.la'
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
--disable-static
|
|
ac_cv_prog_RFKILL=$TERMUX_PREFIX/bin/rfkill
|
|
--with-libpcap-include=$TERMUX_PREFIX/include
|
|
--with-libpcap-lib=$TERMUX_PREFIX/lib
|
|
--with-sqlite3=$TERMUX_PREFIX
|
|
"
|
|
|
|
termux_step_pre_configure() {
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
}
|
|
|
|
termux_step_post_configure() {
|
|
local _LT_VER=$(awk '/^LT_VER =/ { print $3 }' "$TERMUX_PKG_BUILDDIR"/Makefile)
|
|
local m
|
|
for m in ce-wpa osdep; do
|
|
ln -sfr $TERMUX_PREFIX/lib/libaircrack-${m}{-$_LT_VER,}.so
|
|
done
|
|
}
|