[Add] TencentEffect_S1-00 3.0.1.5
[CocoaPods.git] / Specs / 1 / 2 / 7 / SQLCipher / 3.1.0 / SQLCipher.podspec.json
blob06d13ffe70ad52fd9a5086479ea6035ebab2afe2
2   "name": "SQLCipher",
3   "version": "3.1.0",
4   "license": "BSD",
5   "summary": "Full Database Encryption for SQLite.",
6   "description": "SQLCipher is an open source extension to SQLite that provides transparent 256-bit AES encryption of database files.",
7   "homepage": "http://sqlcipher.net",
8   "authors": "Zetetic LLC",
9   "source": {
10     "git": "https://github.com/sqlcipher/sqlcipher.git",
11     "tag": "v3.1.0"
12   },
13   "prepare_command": "    ./configure --enable-tempstore=yes --with-crypto-lib=commoncrypto CFLAGS=\"-DSQLITE_HAS_CODEC -DSQLITE_TEMP_STORE=2 -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_FTS3_PARENTHESIS -DSQLITE_ENABLE_UNLOCK_NOTIFY\"\n    make sqlite3.c\n",
14   "default_subspecs": [
15     "standard"
16   ],
17   "requires_arc": false,
18   "subspecs": [
19     {
20       "name": "common",
21       "frameworks": "Security",
22       "compiler_flags": [
23         "-DSQLITE_HAS_CODEC",
24         "-DSQLITE_TEMP_STORE=2",
25         "-DSQLITE_THREADSAFE",
26         "-DSQLCIPHER_CRYPTO_CC"
27       ],
28       "xcconfig": {
29         "OTHER_CFLAGS": "$(inherited) -DSQLITE_HAS_CODEC -DSQLITE_TEMP_STORE=2 -DSQLITE_THREADSAFE -DSQLCIPHER_CRYPTO_CC"
30       },
31       "source_files": [
32         "sqlite3.c",
33         "sqlite3.h"
34       ],
35       "requires_arc": false
36     },
37     {
38       "name": "standard",
39       "dependencies": {
40         "SQLCipher/common": [
42         ]
43       },
44       "requires_arc": false
45     },
46     {
47       "name": "fts",
48       "dependencies": {
49         "SQLCipher/common": [
51         ]
52       },
53       "compiler_flags": [
54         "-DSQLITE_ENABLE_FTS4",
55         "-DSQLITE_ENABLE_FTS3_PARENTHESIS"
56       ],
57       "xcconfig": {
58         "OTHER_CFLAGS": "$(inherited) -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_FTS3_PARENTHESIS"
59       },
60       "requires_arc": false
61     },
62     {
63       "name": "unlock_notify",
64       "dependencies": {
65         "SQLCipher/common": [
67         ]
68       },
69       "compiler_flags": "-DSQLITE_ENABLE_UNLOCK_NOTIFY",
70       "xcconfig": {
71         "OTHER_CFLAGS": "$(inherited) -DSQLITE_ENABLE_UNLOCK_NOTIFY"
72       },
73       "requires_arc": false
74     }
75   ]