[Add] MYBLMusicSDK 0.5.8
[CocoaPods.git] / Specs / 4 / 1 / 8 / SQLite.swift / 0.11.5 / SQLite.swift.podspec.json
blobae3cd49dddbd79a84321c33e76468f1adcf2ae10
2   "name": "SQLite.swift",
3   "version": "0.11.5",
4   "summary": "A type-safe, Swift-language layer over SQLite3 for iOS and OS X.",
5   "description": "SQLite.swift provides compile-time confidence in SQL statement syntax and\nintent.",
6   "homepage": "https://github.com/stephencelis/SQLite.swift",
7   "license": "MIT",
8   "authors": {
9     "Stephen Celis": "stephen@stephencelis.com"
10   },
11   "source": {
12     "git": "https://github.com/stephencelis/SQLite.swift.git",
13     "tag": "0.11.5"
14   },
15   "social_media_url": "https://twitter.com/stephencelis",
16   "module_name": "SQLite",
17   "platforms": {
18     "ios": "8.0",
19     "tvos": "9.1",
20     "osx": "10.10",
21     "watchos": "2.2"
22   },
23   "default_subspecs": "standard",
24   "pod_target_xcconfig": {
25     "SWIFT_VERSION": "4.1"
26   },
27   "subspecs": [
28     {
29       "name": "standard",
30       "source_files": "Sources/{SQLite,SQLiteObjc}/**/*.{c,h,m,swift}",
31       "exclude_files": "Sources/**/Cipher.swift",
32       "private_header_files": "Sources/SQLiteObjc/*.h",
33       "libraries": "sqlite3",
34       "testspecs": [
35         {
36           "name": "tests",
37           "test_type": "unit",
38           "resources": "Tests/SQLiteTests/fixtures/*",
39           "source_files": "Tests/SQLiteTests/*.swift"
40         }
41       ]
42     },
43     {
44       "name": "standalone",
45       "source_files": "Sources/{SQLite,SQLiteObjc}/**/*.{c,h,m,swift}",
46       "exclude_files": "Sources/**/Cipher.swift",
47       "private_header_files": "Sources/SQLiteObjc/*.h",
48       "xcconfig": {
49         "OTHER_SWIFT_FLAGS": "$(inherited) -DSQLITE_SWIFT_STANDALONE"
50       },
51       "dependencies": {
52         "sqlite3": [
54         ]
55       },
56       "testspecs": [
57         {
58           "name": "tests",
59           "test_type": "unit",
60           "resources": "Tests/SQLiteTests/fixtures/*",
61           "source_files": "Tests/SQLiteTests/*.swift"
62         }
63       ]
64     },
65     {
66       "name": "SQLCipher",
67       "source_files": "Sources/{SQLite,SQLiteObjc}/**/*.{c,h,m,swift}",
68       "private_header_files": "Sources/SQLiteObjc/*.h",
69       "xcconfig": {
70         "OTHER_SWIFT_FLAGS": "$(inherited) -DSQLITE_SWIFT_SQLCIPHER",
71         "GCC_PREPROCESSOR_DEFINITIONS": "$(inherited) SQLITE_HAS_CODEC=1"
72       },
73       "dependencies": {
74         "SQLCipher": [
75           ">= 3.4.0"
76         ]
77       },
78       "testspecs": [
79         {
80           "name": "tests",
81           "test_type": "unit",
82           "resources": "Tests/SQLiteTests/fixtures/*",
83           "source_files": "Tests/SQLiteTests/*.swift"
84         }
85       ]
86     }
87   ]