Files
JBChartView/ZXingObjC/1.7/ZXingObjC.podspec
T
Christoph Jerolimov 13e824bebf [Add] ZXingObjC (new lib with initial versions) 1.7 and 2.0.1
2.0 contains errors, see bug report #10 on ZXingObjC project:
  https://github.com/TheLevelUp/ZXingObjC/issues/10
2012-10-21 16:26:33 +02:00

21 lines
983 B
Ruby

Pod::Spec.new do |s|
s.name = "ZXingObjC"
s.version = "1.7"
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 => "v1.7" }
s.source_files = 'ZXingObjC/**/*.{h,cpp,m,mm}'
s.requires_arc = false
# workaround for a missing import in objc/src/ZXing/ZXImage.mm
# s.prefix_header_contents = '#import <ImageIO/CGImageSource.h>'
s.libraries = 'stdc++', 'iconv'
s.frameworks = 'ImageIO', 'CoreGraphics', 'CoreVideo', 'CoreMedia', 'QuartzCore', 'AVFoundation', 'AudioToolbox'
end