forked from mpvkit/MPVKit
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMPVKit-GPL-local.podspec
More file actions
61 lines (51 loc) · 1.5 KB
/
MPVKit-GPL-local.podspec
File metadata and controls
61 lines (51 loc) · 1.5 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Pod::Spec.new do |s|
s.name = 'MPVKit-GPL'
s.version = '0.40.0-av-local'
s.summary = 'MPVKit with AVFoundation video output for iOS/tvOS (LOCAL DEV)'
s.description = <<-DESC
Local development version of MPVKit.
DESC
s.homepage = 'https://github.com/Alexk2309/MPVKit'
s.license = { :type => 'GPL-3.0', :text => 'GPL-3.0' }
s.author = { 'Alexk2309' => 'https://github.com/Alexk2309' }
s.source = { :git => 'https://github.com/Alexk2309/MPVKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.tvos.deployment_target = '13.0'
s.static_framework = true
s.requires_arc = true
# For local dev: point to built xcframework
s.vendored_frameworks = 'dist/MPVKit-combined/xcframework/MPVKit.xcframework'
# System frameworks
s.frameworks = [
'AVFoundation',
'AudioToolbox',
'CoreAudio',
'CoreVideo',
'CoreFoundation',
'CoreMedia',
'Metal',
'VideoToolbox'
]
# System libraries
s.libraries = [
'bz2',
'iconv',
'expat',
'resolv',
'xml2',
'z',
'c++'
]
s.pod_target_xcconfig = {
'VALID_ARCHS' => 'arm64 x86_64',
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386',
'EXCLUDED_ARCHS[sdk=appletvsimulator*]' => 'i386'
}
s.user_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386',
'EXCLUDED_ARCHS[sdk=appletvsimulator*]' => 'i386'
}
s.xcconfig = {
'OTHER_LDFLAGS' => '$(inherited) -ObjC'
}
end