mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-05-30 18:48:30 +01:00
21 lines
607 B
Ruby
21 lines
607 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'MpvPlayer'
|
|
s.version = '1.0.0'
|
|
s.summary = 'MPV-based video player for Streamyfin (Expo module)'
|
|
s.author = 'Streamyfin'
|
|
s.homepage = 'https://github.com/streamyfin/streamyfin'
|
|
s.platforms = { :ios => '15.1', :tvos => '15.1' }
|
|
s.source = { git: '' }
|
|
s.static_framework = true
|
|
|
|
s.dependency 'ExpoModulesCore'
|
|
s.dependency 'MPVKit'
|
|
|
|
s.pod_target_xcconfig = {
|
|
'DEFINES_MODULE' => 'YES',
|
|
'SWIFT_COMPILATION_MODE' => 'wholemodule'
|
|
}
|
|
|
|
s.source_files = "*.{h,m,mm,swift,hpp,cpp}"
|
|
end
|