657de04a2f
- Drop patches (already in version) - Update indentation in hash file (two spaces) https://gitlab.com/ipcalc/ipcalc/-/blob/1.0.1/NEWS Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
28 lines
744 B
Makefile
28 lines
744 B
Makefile
################################################################################
|
|
#
|
|
# ipcalc
|
|
#
|
|
################################################################################
|
|
|
|
IPCALC_VERSION = 1.0.1
|
|
IPCALC_SITE = $(call gitlab,ipcalc,ipcalc,$(IPCALC_VERSION))
|
|
IPCALC_SOURCE = ipcalc-$(IPCALC_VERSION).tar.bz2
|
|
IPCALC_LICENSE = GPL-2.0+
|
|
IPCALC_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_GEOIP),y)
|
|
IPCALC_CONF_OPTS += -Duse_geoip=enabled
|
|
IPCALC_DEPENDENCIES += host-pkgconf geoip
|
|
else
|
|
IPCALC_CONF_OPTS += -Duse_geoip=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBMAXMINDDB),y)
|
|
IPCALC_CONF_OPTS += -Duse_maxminddb=enabled
|
|
IPCALC_DEPENDENCIES += host-pkgconf libmaxminddb
|
|
else
|
|
IPCALC_CONF_OPTS += -Duse_maxminddb=disabled
|
|
endif
|
|
|
|
$(eval $(meson-package))
|