forked from vimeo/PlayerKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlayerKit.podspec
More file actions
26 lines (19 loc) · 789 Bytes
/
PlayerKit.podspec
File metadata and controls
26 lines (19 loc) · 789 Bytes
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
Pod::Spec.new do |s|
s.name = 'PlayerKit'
s.version = '3.1.0'
s.summary = 'A modular video player system.'
s.description = <<-DESC
PlayerKit is a modular video player system for iOS, tvOS, & macOS.
DESC
s.homepage = 'https://github.com/vimeo/PlayerKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'code' => 'gavin@vimeo.com' }
s.source = { :git => 'https://github.com/vimeo/PlayerKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.3'
s.tvos.deployment_target = '10.0'
s.osx.deployment_target = '10.11'
s.ios.framework = 'UIKit'
s.osx.framework = 'AppKit'
s.swift_version = "5.0"
s.source_files = 'Sources/**/*.swift'
end