69cdc6a362
C library for the MaxMind DB file format The libmaxminddb library provides a C library for reading MaxMind DB files, including the GeoIP2 databases from MaxMind. This is a custom binary format designed to facilitate fast lookups of IP addresses while allowing for great flexibility in the type of data associated with an address. The MaxMind DB format is an open format. The spec is available at http://maxmind.github.io/MaxMind-DB/. This spec is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License. http://maxmind.github.io/libmaxminddb Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> [Thomas: add entry in DEVELOPERS file.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
18 lines
581 B
Makefile
18 lines
581 B
Makefile
################################################################################
|
|
#
|
|
# libmaxminddb
|
|
#
|
|
################################################################################
|
|
|
|
LIBMAXMINDDB_VERSION = 1.2.0
|
|
LIBMAXMINDDB_SITE = $(call github,maxmind,libmaxminddb,$(LIBMAXMINDDB_VERSION))
|
|
LIBMAXMINDDB_INSTALL_STAGING = YES
|
|
LIBMAXMINDDB_LICENSE = Apache-2.0
|
|
LIBMAXMINDDB_LICENSE_FILES = LICENSE
|
|
# Fetched from Github, with no configure script, and we're patching
|
|
# configure.ac
|
|
LIBMAXMINDDB_AUTORECONF = YES
|
|
LIBMAXMINDDB_CONF_OPTS = --disable-tests
|
|
|
|
$(eval $(autotools-package))
|