[Add] DocumentReaderOCRRFIDStage 7.5.10896
[CocoaPods.git] / Specs / 2 / 8 / 0 / OLMKit / 2.1.0 / OLMKit.podspec.json
blobfce2923a415b6f30f5d6a3f73fec91a29b0d5c66
2   "name": "OLMKit",
3   "version": "2.1.0",
4   "summary": "An Objective-C wrapper of olm (http://matrix.org/git/olm)",
5   "description": "olm is an implementation of the Double Ratchet cryptographic ratchet in C++",
6   "homepage": "http://matrix.org/git/olm",
7   "license": {
8     "type": "Apache License, Version 2.0",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Chris Ballinger": "chrisballinger@gmail.com",
13     "matrix.org": "support@matrix.org"
14   },
15   "platforms": {
16     "ios": "5.0"
17   },
18   "public_header_files": "xcode/OLMKit/*.h",
19   "source": {
20     "git": "https://matrix.org/git/olm.git",
21     "tag": "2.1.0"
22   },
23   "source_files": [
24     "xcode/OLMKit/*.{h,m}",
25     "include/**/*.{h,hh}",
26     "src/*.{c,cpp}",
27     "lib/crypto-algorithms/sha256.c",
28     "lib/crypto-algorithms/aes.c",
29     "lib/curve25519-donna/curve25519-donna.c"
30   ],
31   "preserve_paths": "lib/ed25519/**/*.{h,c}",
32   "libraries": "c++",
33   "compiler_flags": "-g -O3 -DOLMLIB_VERSION_MAJOR=2 -DOLMLIB_VERSION_MINOR=1 -DOLMLIB_VERSION_PATCH=0",
34   "xcconfig": {
35     "USER_HEADER_SEARCH_PATHS": "${PODS_ROOT}/OLMKit/include ${PODS_ROOT}/OLMKit/lib ./include ./lib"
36   },
37   "subspecs": [
38     {
39       "name": "olmc",
40       "source_files": [
41         "src/*.{c}",
42         "lib/curve25519-donna.h",
43         "lib/crypto-algorithms/sha256.{h,c}",
44         "lib/crypto-algorithms/aes.{h,c}",
45         "lib/curve25519-donna/curve25519-donna.c"
46       ],
47       "compiler_flags": "-std=c99 -fPIC"
48     },
49     {
50       "name": "olmcpp",
51       "source_files": "src/*.{cpp}",
52       "compiler_flags": "-std=c++11 -fPIC"
53     }
54   ]