forked from zxingify/zxingify-objc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZXingObjC.podspec
18 lines (14 loc) · 862 Bytes
/
ZXingObjC.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "ZXingObjC"
s.version = "2.2.6"
s.summary = "An Objective-C Port of ZXing."
s.homepage = "https://github.com/TheLevelUp/ZXingObjC"
s.author = "ZXing team (http://code.google.com/p/zxing/people/list) and TheLevelUp"
s.license = { :type => 'Apache License 2.0', :file => 'COPYING' }
s.source = { :git => "https://github.com/TheLevelUp/ZXingObjC.git", :tag => "2.2.6" }
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.source_files = 'ZXingObjC/**/*.{h,m}'
s.requires_arc = true
s.frameworks = 'ImageIO', 'CoreGraphics', 'CoreVideo', 'CoreMedia', 'QuartzCore', 'AVFoundation', 'AudioToolbox'
end