forked from doublesymmetry/SwiftAudioEx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftAudioEx.podspec
26 lines (23 loc) · 1.05 KB
/
SwiftAudioEx.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
#
# Be sure to run `pod lib lint SwiftAudioEx.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 = 'SwiftAudioEx'
s.version = '1.0.0-rc.2'
s.summary = 'Easy audio streaming for iOS'
s.description = <<-DESC
SwiftAudioEx 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/DoubleSymmetry/SwiftAudioEx'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'David Chavez' => '[email protected]',
'Jørgen Henrichsen' => '[email protected]', }
s.source = { :git => 'https://github.com/DoubleSymmetry/SwiftAudioEx.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.swift_version = '5.0'
s.source_files = 'SwiftAudioEx/Classes/**/*'
end