-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCapgoCapacitorFfmpeg.podspec
More file actions
22 lines (20 loc) · 905 Bytes
/
CapgoCapacitorFfmpeg.podspec
File metadata and controls
22 lines (20 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'CapgoCapacitorFfmpeg'
s.version = package['version']
s.summary = package['description']
s.license = package['license']
s.homepage = package['repository']['url']
s.author = package['author']
s.source = { :git => package['repository']['url'], :tag => s.version.to_s }
s.source_files = 'ios/Sources/**/*.{swift,h,m,c,cc,mm,cpp}'
s.static_framework = true
s.preserve_paths = 'ios/CapacitorFFmpegNativeCore.xcframework'
s.vendored_frameworks = 'ios/CapacitorFFmpegNativeCore.xcframework'
s.frameworks = ['AVFoundation', 'AudioToolbox', 'CoreFoundation', 'CoreGraphics', 'CoreMedia', 'CoreServices', 'CoreVideo', 'QuartzCore', 'Security', 'VideoToolbox']
s.libraries = ['c++']
s.ios.deployment_target = '15.0'
s.dependency 'Capacitor'
s.swift_version = '5.1'
end