-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathKSYAudioPlotView.podspec
31 lines (29 loc) · 1.28 KB
/
KSYAudioPlotView.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
#
# Be sure to run `pod spec lint KSYAudioPlotView.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "KSYAudioPlotView"
s.version = "1.0.3"
s.summary = "Audio Waveform view"
s.description = <<-DESC
金山云音频视波图UI组件
DESC
s.homepage = "https://github.com/ksvc/AudioPlotView"
s.license = {:type => 'Proprietary', :text => <<-LICENSE
Copyright 2017 kingsoft Ltd. All rights reserved.
LICENSE
}
s.author = { "zengfanping" => "zengfanping@kingsoft.com" }
s.ios.deployment_target = '8.0'
# s.osx.deployment_target = '10.8'
s.source = { :git => "https://github.com/ksvc/AudioPlotView.git",
:tag => 'v'+s.version.to_s }
s.ios.frameworks = 'AudioToolbox','AVFoundation','GLKit', 'Accelerate'
# s.osx.frameworks = 'AudioToolbox','AudioUnit','CoreAudio','QuartzCore','OpenGL','GLKit', 'Accelerate'
s.requires_arc = true;
s.source_files = 'KSYAudioPlotView/*.{h,m,c}'
end