-
Notifications
You must be signed in to change notification settings - Fork 29
/
QiniuUpload.podspec
41 lines (26 loc) · 1.24 KB
/
QiniuUpload.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
Pod::Spec.new do |s|
s.name = "QiniuUpload"
s.version = "3.0.0"
s.summary = "支持批量上传的七牛上传sdk,音频、视频、图片都是支持滴"
s.description = <<-DESC
A longer description of QiniuUpload in Markdown format.
* Think: Why did you write this? What is the focus? What does it do?
* CocoaPods will be using this to generate tags, and improve search results.
* Try to keep it short, snappy and to the point.
* Finally, don't worry about the indent, CocoaPods strips it!
DESC
s.homepage = "https://github.com/huhuanming/qiniu_upload"
s.license = "MIT"
s.authors = { "huhuanming" => "[email protected]"}
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.9'
s.source = { :git => "https://github.com/huhuanming/qiniu_upload.git", :tag => "3.0.0" }
s.source_files = "Classes", "Classes/*.{h,m}"
s.ios.source_files = 'Classes/POSInputStreamLibrary/*.{h,m}'
#s.osx.source_files = ''
s.exclude_files = "Classes/Exclude"
s.frameworks = 'Foundation'
s.ios.frameworks = 'UIKit'
s.osx.framework = 'AppKit'
s.requires_arc = true
end