2018-05-08 16:03:21 +02:00
TERMUX_PKG_HOMEPAGE = https://github.com/royhills/arp-scan
TERMUX_PKG_DESCRIPTION = "arp-scan is a command-line tool for system discovery and fingerprinting. It constructs and sends ARP requests to the specified IP addresses, and displays any responses that are received."
2019-01-24 20:15:44 +01:00
TERMUX_PKG_LICENSE = "GPL-3.0"
2021-03-01 22:13:50 +01:00
TERMUX_PKG_MAINTAINER = "@termux"
2019-12-07 10:39:50 +01:00
TERMUX_PKG_VERSION = 1.9.7
2022-03-23 13:45:37 +01:00
TERMUX_PKG_REVISION = 2
2018-12-09 17:39:42 +01:00
TERMUX_PKG_SRCURL = https://github.com/royhills/arp-scan/archive/${ TERMUX_PKG_VERSION } .tar.gz
2019-12-07 10:39:50 +01:00
TERMUX_PKG_SHA256 = e03c36e4933c655bd0e4a841272554a347cd0136faf42c4a6564059e0761c039
2018-12-15 08:29:57 +01:00
TERMUX_PKG_DEPENDS = "libpcap"
2018-05-08 16:03:21 +02:00
2018-12-09 17:39:42 +01:00
if [ [ ${ TERMUX_ARCH_BITS } = = 32 ] ] ; then
2019-12-07 10:39:50 +01:00
# Retrieved from compilation on device:
TERMUX_PKG_EXTRA_CONFIGURE_ARGS += "pgac_cv_snprintf_long_long_int_format=%lld"
2018-05-08 16:03:21 +02:00
fi
termux_step_pre_configure ( ) {
2018-12-15 08:29:57 +01:00
cp ${ TERMUX_PKG_BUILDER_DIR } /hsearch/* ${ TERMUX_PKG_SRCDIR } /
2018-05-08 16:03:21 +02:00
aclocal
2019-12-07 10:39:50 +01:00
autoheader
2018-05-08 16:03:21 +02:00
automake --add-missing
autoconf
}