blob: 46c8e63f657a2a32c9f45cf80bd0616e213061ba [file] [log] [blame]
{
"name": "leveldb-library",
"version": "1.18.2",
"license": "New BSD",
"summary": "A fast key-value storage library",
"description": "LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values.",
"homepage": "https://github.com/google/leveldb",
"authors": "The LevelDB Authors",
"platforms": {
"ios": "5.0",
"osx": "10.7"
},
"source": {
"git": "https://github.com/matehat/leveldb.git",
"tag": "v1.18.1"
},
"requires_arc": false,
"compiler_flags": [
"-DOS_MACOSX",
"-DLEVELDB_PLATFORM_POSIX"
],
"preserve_paths": [
"db",
"port",
"table",
"util"
],
"xcconfig": {
"CC": "clang",
"CXX": "clang++",
"HEADER_SEARCH_PATHS": "\"${PODS_ROOT}/leveldb-library/\" \"${PODS_ROOT}/leveldb-library/include\"",
"OTHER_LDFLAGS": "-lc++"
},
"header_dir": "leveldb",
"source_files": [
"db/*.{cc}",
"port/*.{cc}",
"table/*.{cc}",
"util/*.{cc}",
"include/leveldb/*.h"
],
"exclude_files": [
"**/*_test.cc",
"**/*_bench.cc",
"port/win"
]
}