forked from chrisballinger/Opus-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename project to OpusKit. The build script has been modified to generate a xcframework that supports the iPhone (arm64) and iPhoneSimulator (arm64 and x86_64) platforms.
- Loading branch information
Trey Ethridge
committed
Feb 8, 2024
1 parent
109347c
commit 3f5a08a
Showing
21 changed files
with
390 additions
and
2,814 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'OpusKit' | ||
s.version = '1.4.0' | ||
s.summary = 'A totally open, royalty-free, highly versatile audio codec.' | ||
s.homepage = 'https://github.com/Phonebooth/OpusKit' | ||
s.author = 'Trey Ethridge' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.source = { | ||
:http => 'https://github.com/Phonebooth/OpusKit/releases/download/' + s.version.to_s + '/OpusKit.xcframework.zip' | ||
} | ||
s.swift_version = '5.0' | ||
s.ios.deployment_target = '14.0' | ||
s.vendored_frameworks = 'OpusKit.xcframework' | ||
end |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// swift-tools-version:5.9 | ||
import PackageDescription | ||
let version = "1.4.0" | ||
let package = Package( | ||
name: "OpusKit", | ||
products: [ | ||
.library( | ||
name: "OpusKit", | ||
targets: ["OpusKit"]), | ||
], | ||
dependencies: [], | ||
targets: [ | ||
.binaryTarget( | ||
name: "OpusKit", | ||
url: "https://github.com/Phonebooth/OpusKit/releases/download/" + version + "/OpusKit.xcframework.zip", | ||
checksum: "a4c3261546118ae0176110d1fef5bc0c23d0ce6ef3cc6ae035eb211206fccf5a" | ||
) | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.