forked from jorgenhenrichsen/SwiftAudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftAudio.podspec
25 lines (22 loc) · 974 Bytes
/
SwiftAudio.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
#
# Be sure to run `pod lib lint SwiftAudio.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SwiftAudio'
s.version = '0.11.2'
s.summary = 'Easy audio streaming for iOS'
s.description = <<-DESC
SwiftAudio is an audio player written in Swift, making it simpler to work with audio playback from streams and files.
DESC
s.homepage = 'https://github.com/quangquy87/SwiftAudio'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'quangquy87' => 'quangquy87@gmail.com' }
s.source = { :git => 'https://github.com/quangquy87/SwiftAudio.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.swift_version = '5.0'
s.source_files = 'SwiftAudio/Classes/**/*'
end