| { |
| "name": "leveldb", |
| "version": "1.17", |
| "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/cybertk/leveldb", |
| "authors": "The LevelDB Authors", |
| "platforms": { |
| "ios": "5.0", |
| "osx": "10.7" |
| }, |
| "source": { |
| "git": "https://github.com/cybertk/leveldb.git", |
| "tag": "1.17" |
| }, |
| "requires_arc": false, |
| "xcconfig": { |
| "CC": "clang", |
| "CXX": "clang++", |
| "HEADER_SEARCH_PATHS": "\"${PODS_ROOT}/leveldb\"", |
| "GCC_PREPROCESSOR_DEFINITIONS": "LEVELDB_PLATFORM_POSIX=1 OS_MACOSX=1", |
| "OTHER_LDFLAGS": "-lc++" |
| }, |
| "source_files": [ |
| "db/*.{h,cc}", |
| "port/*.{h,cc}", |
| "table/*.{h,cc}", |
| "util/*.{h,cc}", |
| "include/leveldb/*.h" |
| ], |
| "exclude_files": [ |
| "**/*_test.cc", |
| "port/win" |
| ], |
| "public_header_files": "include/leveldb/*.h" |
| } |