dc929dfa4d
- Refresh second and fourth patches - Update indentation in hash file (two spaces) https://github.com/google/leveldb/releases/tag/1.23 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
21 lines
535 B
Makefile
21 lines
535 B
Makefile
################################################################################
|
|
#
|
|
# leveldb
|
|
#
|
|
################################################################################
|
|
|
|
LEVELDB_VERSION = 1.23
|
|
LEVELDB_SITE = $(call github,google,leveldb,$(LEVELDB_VERSION))
|
|
LEVELDB_LICENSE = BSD-3-Clause
|
|
LEVELDB_LICENSE_FILES = LICENSE
|
|
LEVELDB_INSTALL_STAGING = YES
|
|
LEVELDB_CONF_OPTS = \
|
|
-DLEVELDB_BUILD_BENCHMARKS=OFF \
|
|
-DLEVELDB_BUILD_TESTS=OFF
|
|
|
|
ifeq ($(BR2_PACKAGE_SNAPPY),y)
|
|
LEVELDB_DEPENDENCIES += snappy
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|