c93d636489
ipcalc is an ancient and venerable tool for manipulating IP addresses, networks, & interfaces from shell scripts. There is a subtool in busybox, but it does not support everything the upstream tool [1] supports. [1] https://gitlab.com/ipcalc/ipcalc Signed-off-by: Derrick Lyndon Pallas <derrick@meter.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
18 lines
478 B
Makefile
18 lines
478 B
Makefile
################################################################################
|
|
#
|
|
# ipcalc
|
|
#
|
|
################################################################################
|
|
|
|
IPCALC_VERSION = 1.0.0
|
|
IPCALC_SITE = https://gitlab.com/ipcalc/ipcalc/-/archive/$(IPCALC_VERSION)
|
|
IPCALC_SOURCE = ipcalc-$(IPCALC_VERSION).tar.bz2
|
|
IPCALC_LICENSE = GPL-2.0+
|
|
IPCALC_LICENSE_FILES = COPYING
|
|
|
|
IPCALC_CONF_OPTS = \
|
|
-Duse_maxminddb=disabled \
|
|
-Duse_geoip=disabled
|
|
|
|
$(eval $(meson-package))
|