You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
775 B
23 lines
775 B
require "json"
|
|
|
|
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = package["name"]
|
|
s.version = package["version"]
|
|
s.summary = package["description"] + " (Android only)"
|
|
s.homepage = package["homepage"]
|
|
s.license = package["license"]
|
|
s.authors = package["author"]
|
|
|
|
s.platform = :ios
|
|
s.source = { :git => "https://github.com/arthenica/ffmpeg-kit.git", :tag => "react.native.v#{s.version}" }
|
|
s.source_files = "ios/*.{h,m}"
|
|
s.requires_arc = true
|
|
|
|
s.dependency "React-Core"
|
|
|
|
# This is a placeholder podspec that doesn't include any actual FFmpeg dependencies
|
|
# iOS support has been removed from this fork
|
|
s.ios.deployment_target = '12.1'
|
|
end
|
|
|