-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathRealTimeCutVADLibrary.podspec
More file actions
31 lines (26 loc) · 1.42 KB
/
RealTimeCutVADLibrary.podspec
File metadata and controls
31 lines (26 loc) · 1.42 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
Pod::Spec.new do |s|
s.name = 'RealTimeCutVADLibrary'
s.version = '1.0.14'
s.summary = 'A real-time VAD library for iOS'
s.homepage = 'https://github.com/helloooideeeeea/RealTimeCutVADLibrary'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'helloooideeeeea' => 'yasushi.sakita@gmail.com' }
s.source = { :git => 'https://github.com/helloooideeeeea/RealTimeCutVADLibrary.git', :tag => s.version.to_s }
s.platforms = { :ios => '15.6', :osx => '11.5' }
s.swift_version = '5.0'
s.source_files = 'RealTimeCutVADLibrary/src/**/*.{h,m}'
s.public_header_files = 'RealTimeCutVADLibrary/src/include/VADWrapper.h'
s.resources = ['RealTimeCutVADLibrary/src/Resources/**/*']
s.prepare_command = <<-CMD
curl -LO https://github.com/helloooideeeeea/RealTimeCutVADLibraryForXCFramework/releases/download/v1.0.3/RealTimeCutVADCXXLibrary.xcframework.zip
unzip -o RealTimeCutVADCXXLibrary.xcframework.zip -d RealTimeCutVADLibrary/Frameworks
CMD
s.vendored_frameworks = [
'RealTimeCutVADLibrary/Frameworks/RealTimeCutVADCXXLibrary.xcframework',
]
s.requires_arc = true
s.pod_target_xcconfig = {
'HEADER_SEARCH_PATHS' => '$(PODS_TARGET_SRCROOT)/RealTimeCutVADLibrary/Frameworks/RealTimeCutVADCXXLibrary.xcframework/ios-arm64/RealTimeCutVADCXXLibrary.framework/Headers',
'EXCLUDED_ARCHS[sdk=macosx*]' => 'x86_64'
}
end