-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathPPpdf417.podspec
65 lines (51 loc) · 2.7 KB
/
PPpdf417.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
Pod::Spec.new do |s|
s.name = "PPpdf417"
s.version = "4.1.1"
s.summary = "A delightful component for barcode scanning"
s.homepage = "http://pdf417.mobi"
s.description = <<-DESC
PDF417.mobi SDK is a delightful component for quick and easy scanning of PDF417, and many other types of 1D and 2D barcodes.
The SDK offers:
- world leading technology for scanning **PDF417 barcodes**
- fast, accurate and robust scanning for all other barcode formats
- integrated camera management
- layered API, allowing everything from simple integration to complex UX customizations.
- lightweight and no internet connection required
- enteprise-level security standards
- data parsing from **US Drivers licenses**
DESC
s.screenshots = [
"http://a2.mzstatic.com/us/r1000/041/Purple6/v4/72/86/bd/7286bde4-911d-0561-4934-7e7fbb5d2033/mzl.zajzkcwv.320x480-75.jpg",
"http://a4.mzstatic.com/us/r1000/010/Purple4/v4/a7/0f/90/a70f90ae-8c70-4709-9292-9ce0299fd712/mzl.jjhpudai.320x480-75.jpg",
"http://a4.mzstatic.com/us/r1000/055/Purple6/v4/f1/ce/f5/f1cef57c-ad99-886a-f3b8-643428136ef7/mzl.mjottsci.320x480-75.jpg"
]
s.license = {
:type => 'commercial',
:text => <<-LICENSE
© 2013-2015 MicroBlink Ltd. All rights reserved.
For full license text, visit http://pdf417.mobi/doc/PDF417license.pdf
LICENSE
}
s.authors = {
"MicroBlink" => "[email protected]",
"Jurica Cerovec" => "[email protected]"
}
s.source = {
:git => 'https://github.com/PDF417/pdf417-ios.git',
:tag => 'v4.1.1'
}
s.preserve_paths = 'MicroBlink.embeddedframework/*'
s.platform = :ios
# ――― MULTI-PLATFORM VALUES ――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = '6.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}"
s.ios.requires_arc = false
s.ios.xcconfig = {
'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/PPpdf417/MicroBlink.embeddedframework"'
}
s.ios.frameworks = 'MicroBlink', 'AVFoundation', 'AudioToolbox', 'CoreMedia'
s.ios.libraries = 'iconv', 'c++'
end