forked from thomaschristensen/Pantomime
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Pantomime.podspec
executable file
·22 lines (20 loc) · 959 Bytes
/
Pantomime.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "Pantomime"
s.version = "0.1.4"
s.summary = "Parsing of M3U8 manifest files for Swift"
s.description = <<-DESC
M3U8Parser4Swift reads and writes HTTP Live Streaming manifest files.
Use it to fetch a Master manifest and for parsing it. Supports the
Internet-Draft version 7. Can be used to throw events when various elements
have been parsed. Use it to contruct a new manifest from scratch.
Supports Master and Media playlist manifest files.
DESC
s.homepage = "https://github.com/thomaschristensen/Pantomime"
s.license = "MIT"
s.author = { "Thomas Christensen" => "[email protected]" }
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.source = { :git => "https://github.com/thomaschristensen/Pantomime.git", :tag => "0.1.4" }
s.source_files = "sources"
end