-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathicu4c-iosx.podspec
31 lines (31 loc) · 1.86 KB
/
icu4c-iosx.podspec
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
Pod::Spec.new do |s|
s.name = "icu4c-iosx"
s.version = "76.1.4"
s.summary = "ICU XCFramework for macOS, iOS, watchOS, tvOS, and visionOS, including builds for Mac Catalyst, iOS Simulator, watchOS Simulator, tvOS Simulator, and visionOS Simulator."
s.homepage = "https://github.com/apotocki/icu4c-iosx"
s.license = "BSD"
s.author = { "Alexander Pototskiy" => "[email protected]" }
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.source = { :git => "https://github.com/apotocki/icu4c-iosx.git", :tag => "#{s.version}" }
s.source_files = "product/include/**/*.{h}"
s.header_mappings_dir = "product/include"
s.prepare_command = "sh scripts/build.sh"
s.public_header_files = "product/include/**/*.{h}"
s.vendored_frameworks = "product/frameworks/icudata.xcframework", "product/frameworks/icui18n.xcframework", "product/frameworks/icuio.xcframework", "product/frameworks/icuuc.xcframework"
end