forked from gali8/Tesseract-OCR-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TesseractOCRiOS.podspec
30 lines (22 loc) · 1.38 KB
/
TesseractOCRiOS.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Pod::Spec.new do |s|
s.header_dir = 'TesseractOCR'
s.name = 'TesseractOCRiOS'
s.version = '4.0.0'
s.summary = 'Use Tesseract OCR in iOS projects written in either Objective-C or Swift.'
s.homepage = 'https://github.com/gali8/Tesseract-OCR-iOS'
s.documentation_url = 'https://github.com/gali8/Tesseract-OCR-iOS/blob/master/README.md'
s.license = { :type => 'MIT',
:file => 'LICENSE.md' }
s.authors = { 'Daniele Galiotto' => '[email protected]',
'Kevin Conley' => '[email protected]'}
s.source = { :git => 'https://github.com/gali8/Tesseract-OCR-iOS.git', :tag => s.version.to_s }
s.platform = :ios, "8.1"
s.source_files = 'TesseractOCR/*.{h,m,mm}', 'TesseractOCR/include/**/*.h'
s.private_header_files = 'TesseractOCR/include/**/*.h'
s.requires_arc = true
s.frameworks = 'UIKit', 'Foundation'
s.ios.deployment_target = "7.0"
s.ios.vendored_library = 'TesseractOCR/lib/*.a'
s.xcconfig = { 'OTHER_LDFLAGS' => '-lstdc++ -weak_library /usr/lib/libstdc++.6.0.9.dylib',
'CLANG_CXX_LIBRARY' => 'compiler-default' }
end