forked from apotocki/icu4c-iosx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicu4c-iosx.podspec
20 lines (20 loc) · 1.2 KB
/
icu4c-iosx.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "icu4c-iosx"
s.version = "72.1.1"
s.summary = "ICU XCFramework for macOS and iOS, including both arm64 and x86_64 builds for macOS, Mac Catalyst and Simulator."
s.homepage = "https://github.com/apotocki/icu4c-iosx"
s.license = "BSD"
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.osx.pod_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.ios.pod_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.static_framework = true
s.prepare_command = "sh scripts/build.sh"
s.source = { :git => "https://github.com/apotocki/icu4c-iosx.git", :tag => "#{s.version}", :submodules => "true" }
s.source_files = "product/include/**/*.{h}"
s.header_mappings_dir = "product/include"
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