Files
HaishinKit.swift/HaishinKit.podspec
T
2019-09-15 20:12:39 +09:00

34 lines
1.2 KiB
Ruby

Pod::Spec.new do |s|
s.name = "HaishinKit"
s.version = "0.11.9"
s.summary = "Camera and Microphone streaming library via RTMP, HLS for iOS, macOS, tvOS."
s.swift_version = "5.0"
s.description = <<-DESC
HaishinKit. Camera and Microphone streaming library via RTMP, HLS for iOS, macOS, tvOS.
DESC
s.homepage = "https://github.com/shogo4405/HaishinKit.swift"
s.license = "New BSD"
s.author = { "shogo4405" => "shogo4405@gmail.com" }
s.authors = { "shogo4405" => "shogo4405@gmail.com" }
s.source = { :git => "https://github.com/shogo4405/HaishinKit.swift.git", :tag => "#{s.version}" }
s.social_media_url = "http://twitter.com/shogo4405"
s.ios.deployment_target = "8.0"
s.ios.source_files = "Platforms/iOS/*.{h,swift}"
s.osx.deployment_target = "10.11"
s.osx.source_files = "Platforms/macOS/*.{h,swift}"
s.tvos.deployment_target = "10.2"
s.tvos.source_files = "Platforms/tvOS/*.{h,swift}"
s.source_files = "Sources/**/*.swift"
s.dependency 'Logboard', '~> 2.1.0'
# fix GL deprecation warning
s.pod_target_xcconfig = { "SWIFT_ACTIVE_COMPILATION_CONDITIONS" => "GLES_SILENCE_DEPRECATION" }
end