forked from zxingify/zxingify-objc
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathZXingObjC.podspec
More file actions
17 lines (12 loc) · 793 Bytes
/
ZXingObjC.podspec
File metadata and controls
17 lines (12 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "ZXingObjC"
s.version = "2.1.0"
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.1.0" }
s.source_files = 'ZXingObjC/**/*.{h,m}'
s.requires_arc = false
s.frameworks = 'ImageIO', 'CoreGraphics', 'CoreVideo', 'CoreMedia', 'QuartzCore', 'AVFoundation', 'AudioToolbox'
end