ooni-probe-cli/MOBILE/ios/template.podspec
Simone Basso 6fbeaa3f1a
[forwardport] fix(template.podspec): the correct suffix is xcframework (#639) (#640)
This diff forward ports 21a9b977eef7a8c8a6107aec713b6202ba9e5d48

The template was still wrong and was referencing a .framework
while now we generate a .xcframework.

See, e.g., this failed build: https://github.com/ooni/probe-ios/runs/4444313406?check_suite_focus=true

Part of https://github.com/ooni/probe/issues/1843
2021-12-07 14:29:27 +01:00

14 lines
430 B
Ruby

Pod::Spec.new do |s|
s.name = "oonimkall"
s.version = "@VERSION@"
s.summary = "OONI Probe Library for iOS"
s.author = "Simone Basso"
s.homepage = "https://github.com/ooni/probe-cli"
s.license = { :type => "BSD" }
s.source = {
:http => "https://github.com/ooni/probe-cli/releases/download/@RELEASE@/oonimkall.xcframework.zip"
}
s.platform = :ios, "9.0"
s.ios.vendored_frameworks = "oonimkall.framework"
end