Skip to content

Commit

Permalink
Add SPM support (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
laves authored Oct 24, 2024
1 parent 4febc38 commit 79641c8
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// swift-tools-version:5.5
import PackageDescription

let package = Package(
name: "ios-voice-processor",
platforms: [
.iOS(.v11)
],
products: [
.library(
name: "ios_voice_processor",
targets: ["ios_voice_processor"])
],
targets: [
.target(
name: "ios_voice_processor",
linkerSettings: [
.linkedFramework("AVFoundation")
]
)
],
swiftLanguageVersions: [.v5]
)
4 changes: 2 additions & 2 deletions ios-voice-processor.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Pod::Spec.new do |s|
s.name = 'ios-voice-processor'
s.module_name = 'ios_voice_processor'
s.version = '1.1.1'
s.version = '1.1.2'
s.summary = 'An asynchronous iOS audio recording library designed for real-time speech audio processing.'
s.description = <<-DESC
The iOS Voice Processor is an asynchronous audio capture library designed for real-time audio processing.
Expand All @@ -24,7 +24,7 @@ Pod::Spec.new do |s|

s.ios.deployment_target = '11.0'
s.swift_version = '5.0'
s.source_files = 'VoiceProcessor*.swift'
s.source_files = 'src/ios_voice_processor/VoiceProcessor*.swift'
s.frameworks = 'AVFoundation'

end
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 79641c8

Please sign in to comment.