-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLookInsideServer.podspec
More file actions
21 lines (21 loc) · 1 KB
/
LookInsideServer.podspec
File metadata and controls
21 lines (21 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "LookInsideServer"
s.version = "0.2.2"
s.summary = "LookInside runtime server for debuggable iOS and macOS apps."
s.homepage = "https://github.com/LookInsideApp/LookInside-Release"
s.license = { :type => "MIT" }
s.authors = { "LookInside" => "support@lookinside-app.com" }
s.source = { :git => "https://github.com/LookInsideApp/LookInside-Release.git", :tag => s.version.to_s }
s.ios.deployment_target = "13.0"
s.osx.deployment_target = "14.0"
s.swift_versions = ["5.9"]
s.vendored_frameworks = "LookInsideServer.xcframework"
s.prepare_command = <<-CMD
set -eu
curl -L -o LookInsideServer.xcframework.zip "https://github.com/LookInsideApp/LookInside-Release/releases/download/0.2.2/LookInsideServer.xcframework.zip"
echo "7a54f2a6292dcd127be26d181878f809cae90cdbcd65f47e1b9eb59e6776f860 LookInsideServer.xcframework.zip" | shasum -a 256 -c -
rm -rf LookInsideServer.xcframework
ditto -x -k LookInsideServer.xcframework.zip .
rm LookInsideServer.xcframework.zip
CMD
end