-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathopenssl-iosx.podspec
More file actions
34 lines (32 loc) · 1.85 KB
/
openssl-iosx.podspec
File metadata and controls
34 lines (32 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Pod::Spec.new do |s|
s.name = "openssl-iosx"
s.version = "3.6.1.0"
s.summary = "OpenSSL libraries for macOS, iOS, and visionOS, including both arm64 and x86_64 builds for macOS, Mac Catalyst, iOS Simulator, and visionOS Simulator."
s.homepage = "https://github.com/apotocki/openssl-iosx"
s.license = "Apache"
s.author = { "Alexander Pototskiy" => "alex.a.potocki@gmail.com" }
s.social_media_url = "https://www.linkedin.com/in/alexander-pototskiy"
s.ios.deployment_target = "13.4"
s.osx.deployment_target = "11.0"
s.tvos.deployment_target = "13.0"
s.watchos.deployment_target = "11.0"
s.visionos.deployment_target = "1.0"
s.ios.pod_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.osx.pod_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.tvos.pod_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.watchos.pod_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.visionos.pod_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.ios.user_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.osx.user_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.tvos.user_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.watchos.user_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.visionos.user_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.static_framework = true
s.prepare_command = "sh scripts/build.sh"
s.source = { :git => "https://github.com/apotocki/openssl-iosx.git", :tag => "#{s.version}" }
s.header_mappings_dir = "frameworks/Headers"
s.public_header_files = "frameworks/Headers/**/*.{h,H,c}"
s.source_files = "frameworks/Headers/**/*.{h,H,c}"
s.vendored_frameworks = "frameworks/ssl.xcframework", "frameworks/crypto.xcframework", "frameworks/apps.xcframework"
#s.preserve_paths = "frameworks/**/*"
end