Files
Qlyra/third_party/kusoft/macos/kusoft.podspec
T
sevenhill f74057ce9b
Build Android (FCM) / build-android-fcm (push) Canceled after 0s
Build Android / build-android (push) Canceled after 0s
Build iOS / build-ios (push) Canceled after 0s
Build Linux / build-linux (push) Canceled after 0s
Build macOS / build-macos (push) Canceled after 0s
Build Windows / build-windows (push) Canceled after 0s
Release (main) / android (oneme) (push) Canceled after 0s
Release (main) / android (qlyra) (push) Canceled after 0s
Release (main) / windows (push) Canceled after 0s
Release (main) / linux (push) Canceled after 0s
Release (main) / macos (push) Canceled after 0s
Release (main) / ios (push) Canceled after 0s
Release (main) / release (push) Canceled after 0s
Rebrand application as Qlyra
2026-08-30 13:16:17 +03:00

27 lines
1017 B
Ruby

Pod::Spec.new do |s|
s.name = 'kusoft'
s.version = '0.1.0'
s.summary = 'Kusoft native transport for Flutter.'
s.description = 'Kusoft TLS, protocol, media and call transport.'
s.homepage = 'https://example.invalid/kusoft'
s.license = { :type => 'Unspecified' }
s.author = { 'Kusoft' => 'devnull@example.invalid' }
s.module_name = 'kusoft_dart'
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.dependency 'FlutterMacOS'
s.platform = :osx, '10.11'
s.swift_version = '5.0'
s.script_phase = {
:name => 'Build Rust library',
:script => 'sh "$PODS_TARGET_SRCROOT/../cargokit/build_pod.sh" ../rust kusoft_dart',
:execution_position => :before_compile,
:input_files => ['${BUILT_PRODUCTS_DIR}/cargokit_phony'],
:output_files => ['${PODS_CONFIGURATION_BUILD_DIR}/kusoft_dart/libkusoft_dart.a'],
}
s.pod_target_xcconfig = {
'DEFINES_MODULE' => 'YES',
'OTHER_LDFLAGS' => '-force_load ${PODS_CONFIGURATION_BUILD_DIR}/kusoft_dart/libkusoft_dart.a',
}
end