-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkotlinspeechfeatures.podspec
39 lines (35 loc) · 1.67 KB
/
kotlinspeechfeatures.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
32
33
34
35
36
37
38
39
Pod::Spec.new do |spec|
spec.name = 'kotlinspeechfeatures'
spec.version = 'v1.0.0'
spec.homepage = 'https://github.com/MerlynMind/kotlin_speech_features'
spec.source = { :http=> ''}
spec.authors = 'Raquib-ul Alam, Arjun Sunil, Rob Smith'
spec.license = 'MIT License'
spec.summary = 'This library provides common speech features for ASR including MFCCs and filterbank energies.'
spec.vendored_frameworks = 'KotlinSpeechFeatures.xcframework'
spec.libraries = 'c++'
spec.ios.deployment_target = '14.1'
spec.pod_target_xcconfig = {
'KOTLIN_PROJECT_PATH' => ':kotlinspeechfeatures',
'PRODUCT_MODULE_NAME' => 'KotlinSpeechFeatures',
}
spec.script_phases = [
{
:name => 'Build kotlinspeechfeatures',
:execution_position => :before_compile,
:shell_path => '/bin/sh',
:script => <<-SCRIPT
if [ "YES" = "$COCOAPODS_SKIP_KOTLIN_BUILD" ]; then
echo "Skipping Gradle build task invocation due to COCOAPODS_SKIP_KOTLIN_BUILD environment variable set to \"YES\""
exit 0
fi
set -ev
REPO_ROOT="$PODS_TARGET_SRCROOT"
"$REPO_ROOT/../gradlew" -p "$REPO_ROOT" $KOTLIN_PROJECT_PATH:syncFramework \
-Pkotlin.native.cocoapods.platform=$PLATFORM_NAME \
-Pkotlin.native.cocoapods.archs="$ARCHS" \
-Pkotlin.native.cocoapods.configuration="$CONFIGURATION"
SCRIPT
}
]
end