forked from clappr/clappr-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Clappr.podspec
28 lines (24 loc) · 1.14 KB
/
Clappr.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
27
28
Pod::Spec.new do |s|
s.name = "Clappr"
s.version = "0.11.30"
s.summary = "An extensible media player for iOS and tvOS"
s.homepage = "http://clappr.io"
s.license = 'MIT'
s.authors = {
"Diego Marcon" => "dm.marcon@gmail.com",
"Thiago Pontes" => "thiagopnts@gmail.com",
"Gustavo Barbosa" => "gustavocsb@gmail.com",
"Bruno Torres" => "me@brunotorr.es",
"Fernando Pinho" => "fpinho@gmail.com",
"Uéliton Freitas" => "freitas.ueliton@gmail.com",
"Augusto Boranga" => "guto.boranga@gmail.com",
"Cristian Madrid" => "cristianmadridd@gmail.com",
}
s.source = { :git => "https://github.com/clappr/clappr-ios.git", :tag => s.version.to_s }
s.requires_arc = true
s.ios.resources = ['Sources/Clappr_iOS/Resources/*.{xib,ttf,png,xcassets}', 'Sources/Clappr_iOS/Classes/**/*.xib']
s.ios.deployment_target = "9.0"
s.ios.source_files = ['Sources/Clappr/Classes/**/*.{swift,h,m}', 'Sources/Clappr_iOS/Classes/**/*.{swift,h,m}']
s.tvos.deployment_target = "10.0"
s.tvos.source_files = ['Sources/Clappr/Classes/**/*', 'Sources/Clappr_tvOS/Classes/**/*']
end