30a3e8d108
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv2.1/LGPLv2.1+ is LGPL-2.1/LGPL-2.1+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv2.1(\+)?/LGPL-2.1\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 lines
444 B
Makefile
15 lines
444 B
Makefile
################################################################################
|
|
#
|
|
# geoip
|
|
#
|
|
################################################################################
|
|
|
|
GEOIP_VERSION = 1.6.9
|
|
GEOIP_SOURCE = GeoIP-$(GEOIP_VERSION).tar.gz
|
|
GEOIP_SITE = https://github.com/maxmind/geoip-api-c/releases/download/v$(GEOIP_VERSION)
|
|
GEOIP_INSTALL_STAGING = YES
|
|
GEOIP_LICENSE = LGPL-2.1+
|
|
GEOIP_LICENSE_FILES = COPYING
|
|
|
|
$(eval $(autotools-package))
|