forked from dmrschmidt/DSWaveformImage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDSWaveformImage.podspec
20 lines (19 loc) · 935 Bytes
/
DSWaveformImage.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "DSWaveformImage"
s.version = "5.1.5"
s.swift_version = "4.2"
s.summary = "generate waveform images from audio files in iOS"
s.description = <<-DESC
DSWaveformImageDrawer and DSWaveformImageView generate waveform images of audio files.
DESC
s.homepage = "https://github.com/dmrschmidt/DSWaveformImage"
s.screenshots = "https://raw.github.com/dmrschmidt/DSWaveformImage/master/screenshot.png"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = "Dennis Schmidt"
s.social_media_url = "http://twitter.com/dmrschmidt"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/dmrschmidt/DSWaveformImage.git", :tag => "#{s.version}" }
s.source_files = 'DSWaveformImage', 'DSWaveformImage/**/*.swift'
s.frameworks = 'AVFoundation'
s.requires_arc = true
end