package/arp-scan: bump to version 1.10.0

- Use official tarball and so drop autoreconf
- libcap is an optional dependency since
  923f123a28

https://github.com/royhills/arp-scan/releases/tag/1.10.0

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Fabrice Fontaine 2022-12-14 23:20:12 +01:00 committed by Peter Korsgaard
parent c2baa583c3
commit 1975c53176
2 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,3 @@
# Locally calculated # Locally calculated
sha256 b9b75ceaef6348f5951b06c773ec7a243a9e780e160eafebc369f9c27f6a7d3f arp-scan-1.9.8.tar.gz sha256 a078fe8711ecbb8b99121c3d8be26ae7e7f339f11010ef61318be4f33394d012 arp-scan-1.10.0.tar.gz
sha256 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 COPYING sha256 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 COPYING

View File

@ -4,12 +4,11 @@
# #
################################################################################ ################################################################################
ARP_SCAN_VERSION = 1.9.8 ARP_SCAN_VERSION = 1.10.0
ARP_SCAN_SITE = $(call github,royhills,arp-scan,$(ARP_SCAN_VERSION)) ARP_SCAN_SITE = https://github.com/royhills/arp-scan/releases/download/$(ARP_SCAN_VERSION)
ARP_SCAN_LICENSE = GPL-3.0+ ARP_SCAN_LICENSE = GPL-3.0+
ARP_SCAN_LICENSE_FILES = COPYING ARP_SCAN_LICENSE_FILES = COPYING
ARP_SCAN_DEPENDENCIES = libpcap ARP_SCAN_DEPENDENCIES = libpcap
ARP_SCAN_AUTORECONF = YES
ifeq ($(BR2_STATIC_LIBS),y) ifeq ($(BR2_STATIC_LIBS),y)
ARP_SCAN_CONF_OPTS += LIBS="`$(STAGING_DIR)/usr/bin/pcap-config --static --additional-libs`" ARP_SCAN_CONF_OPTS += LIBS="`$(STAGING_DIR)/usr/bin/pcap-config --static --additional-libs`"
@ -17,4 +16,11 @@ endif
ARP_SCAN_CONF_ENV = pgac_cv_snprintf_long_long_int_format='%lld' ARP_SCAN_CONF_ENV = pgac_cv_snprintf_long_long_int_format='%lld'
ifeq ($(BR2_PACKAGE_LIBCAP),y)
ARP_SCAN_DEPENDENCIES += libcap
ARP_SCAN_CONF_OPTS += --with-libcap
else
ARP_SCAN_CONF_OPTS += --without-libcap
endif
$(eval $(autotools-package)) $(eval $(autotools-package))