e2f2186ffa
Changelog: https://github.com/osmcode/libosmium/releases/tag/v2.17.2 Since commit ac5a20e64b: "Github actions: Use lz4 library in CI builds" lz4 is mandatory dependency, so move it to permanent dependencies list. Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
35 lines
788 B
Makefile
35 lines
788 B
Makefile
################################################################################
|
|
#
|
|
# libosmium
|
|
#
|
|
################################################################################
|
|
|
|
LIBOSMIUM_VERSION = 2.17.2
|
|
LIBOSMIUM_SITE = $(call github,osmcode,libosmium,v$(LIBOSMIUM_VERSION))
|
|
LIBOSMIUM_LICENSE = BSL-1.0
|
|
LIBOSMIUM_LICENSE_FILES = LICENSE
|
|
LIBOSMIUM_INSTALL_STAGING = YES
|
|
LIBOSMIUM_DEPENDENCIES = boost protozero lz4
|
|
|
|
ifeq ($(BR2_PACKAGE_BZIP2),y)
|
|
LIBOSMIUM_DEPENDENCIES += bzip2
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_EXPAT),y)
|
|
LIBOSMIUM_DEPENDENCIES += expat
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGEOS),y)
|
|
LIBOSMIUM_DEPENDENCIES += libgeos
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PROJ),y)
|
|
LIBOSMIUM_DEPENDENCIES += proj
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
LIBOSMIUM_DEPENDENCIES += zlib
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|