[Add] DocumentReaderOCRRFIDStage 7.5.10896
[CocoaPods.git] / Specs / 6 / 4 / 9 / BRFullTextSearch / 2.0.0-beta1 / BRFullTextSearch.podspec.json
blob8d7eaa1b34f92a95a3b837fe1ab0bae25e0b3266
2   "name": "BRFullTextSearch",
3   "version": "2.0.0-beta1",
4   "summary": "Objective-C full text search engine.",
5   "description": "This project provides a way to integrate full-text search\ncapabilities into your iOS and OS X projects. First, it provides\na protocol-based API for a simple text indexing and search\nframework. Second, it provides a\n[CLucene](http://clucene.sourceforge.net/) based implementation of\nthat framework.",
6   "homepage": "https://github.com/Blue-Rocket/BRFullTextSearch",
7   "license": "Apache License, Version 2.0",
8   "authors": {
9     "Matt Magoffin": "matt@bluerocket.us"
10   },
11   "platforms": {
12     "ios": "5.1",
13     "osx": "10.7"
14   },
15   "source": {
16     "git": "https://github.com/Blue-Rocket/BRFullTextSearch.git",
17     "tag": "2.0.0-beta1"
18   },
19   "libraries": [
20     "c++",
21     "z"
22   ],
23   "compiler_flags": [
24     "-fvisibility=default",
25     "-fPIC",
26     "-D_UCS2",
27     "-D_UNICODE",
28     "-D_REENTRANT",
29     "-DNDEBUG"
30   ],
31   "xcconfig": {
32     "CLANG_CXX_LANGUAGE_STANDARD": "c++0x",
33     "CLANG_CXX_LIBRARY": "libc++"
34   },
35   "requires_arc": true,
36   "default_subspecs": "Core",
37   "subspecs": [
38     {
39       "name": "Core",
40       "dependencies": {
41         "BRFullTextSearch/API": [
43         ],
44         "BRFullTextSearch/Implementation-CLucene": [
46         ]
47       }
48     },
49     {
50       "name": "API",
51       "source_files": "BRFullTextSearch/*.{h,m}",
52       "exclude_files": [
53         "BRFullTextSearch/*CLucene*",
54         "BRFullTextSearch/BRNoLockFactory.*",
55         "BRFullTextSearch/*Analyzer*",
56         "BRFullTextSearch/*Filter*"
57       ]
58     },
59     {
60       "name": "Implementation-CLucene",
61       "source_files": [
62         "BRFullTextSearch/*CLucene*",
63         "BRFullTextSearch/BRNoLockFactory.*",
64         "BRFullTextSearch/*Analyzer*",
65         "BRFullTextSearch/*Filter*"
66       ],
67       "dependencies": {
68         "BRFullTextSearch/API": [
70         ],
71         "BRCLucene": [
72           "< 2.0"
73         ]
74       }
75     }
76   ]