forked from hejtmii/Tesseract-OCR-iOS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Tesseract-iOS.podspec
31 lines (23 loc) · 1.4 KB
/
Tesseract-iOS.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
31
Pod::Spec.new do |s|
s.header_dir = 'TesseractOCR'
s.name = 'Tesseract-iOS'
s.version = '4.1'
s.summary = 'Use Tesseract OCR in iOS projects written in either Objective-C or Swift.'
s.homepage = 'https://github.com/NectGmbH/Tesseract-iOS'
s.documentation_url = 'https://github.com/NectGmbH/Tesseract-iOS/blob/master/README.md'
s.license = { :type => 'MIT',
:file => 'LICENSE.md' }
s.authors = { 'Daniele Galiotto' => '[email protected]',
'Nect GmbH' => '[email protected]',
'Kevin Conley' => '[email protected]'}
s.source = { :git => 'https://github.com/NectGmbH/Tesseract-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 = "8.0"
s.ios.vendored_library = 'TesseractOCR/lib/*.a'
s.xcconfig = { 'OTHER_LDFLAGS' => '-lstdc++ -lz',
'CLANG_CXX_LIBRARY' => 'compiler-default' }
end