-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
Pod::Spec.new do |s| | ||
|
||
s.name = "PPBlinkOCR" | ||
s.version = "1.0.0" | ||
s.summary = "A state-of-the-art OCR module for mobile devices" | ||
s.homepage = "http://microblink.com" | ||
|
||
s.description = <<-DESC | ||
BlinkOCR SDK is a state-of-the-art OCR module for mobile devices. It's OCR technology is optimized | ||
specifically for mobile devices and architectures. This allows faster results and lower error rate | ||
than regular desktop-based OCR software. BlinkOCR features: | ||
- integrated camera management | ||
- integrated **text parsing** feature for fields like IBANs, prices, email addresses, urls, and many more! | ||
- layered API, allowing everything from simple integration to complex UX customizations. | ||
- lightweight and no internet connection required | ||
- enteprise-level security standards | ||
DESC | ||
|
||
s.license = { | ||
:type => 'commercial', | ||
:text => <<-LICENSE | ||
© 2013-2015 MicroBlink Ltd. All rights reserved. | ||
LICENSE | ||
} | ||
|
||
s.authors = { | ||
"MicroBlink" => "[email protected]", | ||
"Jurica Cerovec" => "[email protected]" | ||
} | ||
|
||
s.source = { | ||
:git => 'https://github.com/BlinkOCR/blinkocr-ios.git', | ||
:tag => 'v1.0.0' | ||
} | ||
|
||
s.preserve_paths = 'MicroBlink.embeddedframework/*' | ||
|
||
s.platform = :ios | ||
|
||
# ――― MULTI-PLATFORM VALUES ――――――――――――――――――――――――――――――――――――――――――――――――― # | ||
|
||
s.ios.deployment_target = '6.0.0' | ||
s.ios.source_files = 'MicroBlink.embeddedframework/MicroBlink.framework/Versions/A/Headers/*.{h}' | ||
s.ios.header_dir = 'MicroBlink' | ||
s.ios.public_header_files = "MicroBlink.embeddedframework/MicroBlink.framework/Versions/A/Headers/*.h" | ||
s.ios.resources = "MicroBlink.embeddedframework/MicroBlink.framework/Versions/A/Resources/*.{strings,wav,png,zzip}" | ||
s.ios.requires_arc = false | ||
|
||
s.ios.xcconfig = { | ||
'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/PPBlinkOCR/MicroBlink.embeddedframework"' | ||
} | ||
|
||
s.ios.frameworks = 'MicroBlink', 'AVFoundation', 'AudioToolbox', 'CoreMedia' | ||
s.ios.libraries = 'c++', 'iconv' | ||
|
||
end |