Files
SwiftAudioEx/SwiftAudioEx.podspec
2024-03-25 14:30:43 +01:00

27 lines
1.0 KiB
Ruby

#
# 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.1.0'
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' => 'david@dcvz.io',
'Jørgen Henrichsen' => 'jh.henrichs@gmail.com', }
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 = 'Sources/SwiftAudioEx/**/*'
end