Files
AzooKeyKanaKanjiConverter/Package.swift
2025-04-26 16:50:03 +09:00

191 lines
6.5 KiB
Swift

// swift-tools-version: 6.1
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
import Foundation
let swiftSettings: [SwiftSetting] = [
.enableUpcomingFeature("ExistentialAny"),
.interoperabilityMode(.Cxx, .when(traits: ["Zenzai"]))
]
var dependencies: [Package.Dependency] = [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
.package(url: "https://github.com/apple/swift-algorithms", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-collections", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-argument-parser", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/ensan-hcl/swift-tokenizers", from: "0.0.1")
]
var efficientNGramDependencies: [Target.Dependency] = [
.product(name: "Transformers", package: "swift-tokenizers")
]
#if (!os(Linux) || !canImport(Android)) && !os(Windows)
// AndroidWindowsSwiftyMarisaEfficientNGram
dependencies.append(.package(url: "https://github.com/ensan-hcl/SwiftyMarisa", from: "0.0.1"))
efficientNGramDependencies.append(.product(name: "SwiftyMarisa", package: "SwiftyMarisa", condition: .when(traits: ["Zenzai"])))
#endif
var targets: [Target] = [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "SwiftUtils",
dependencies: [
.product(name: "Algorithms", package: "swift-algorithms")
],
resources: [],
swiftSettings: swiftSettings
),
.target(
name: "EfficientNGram",
dependencies: efficientNGramDependencies,
resources: [.copy("tokenizer")],
swiftSettings: swiftSettings
),
.target(
name: "KanaKanjiConverterModuleWithDefaultDictionary",
dependencies: [
"KanaKanjiConverterModule"
],
exclude: [
"azooKey_dictionary_storage/README.md",
"azooKey_dictionary_storage/LICENSE",
"azooKey_emoji_dictionary_storage/data",
"azooKey_emoji_dictionary_storage/scripts",
"azooKey_emoji_dictionary_storage/requirements.txt",
"azooKey_emoji_dictionary_storage/README.md",
],
resources: [
.copy("azooKey_dictionary_storage/Dictionary"),
.copy("azooKey_emoji_dictionary_storage/EmojiDictionary"),
],
swiftSettings: swiftSettings
),
.executableTarget(
name: "CliTool",
dependencies: [
"KanaKanjiConverterModuleWithDefaultDictionary",
.product(name: "ArgumentParser", package: "swift-argument-parser"),
],
swiftSettings: swiftSettings
),
.testTarget(
name: "SwiftUtilsTests",
dependencies: ["SwiftUtils"],
resources: [],
swiftSettings: swiftSettings
),
.testTarget(
name: "EfficientNGramTests",
dependencies: ["EfficientNGram"],
resources: [],
swiftSettings: swiftSettings
),
.testTarget(
name: "KanaKanjiConverterModuleTests",
dependencies: ["KanaKanjiConverterModule"],
resources: [
.copy("DictionaryMock")
],
swiftSettings: swiftSettings
),
.testTarget(
name: "KanaKanjiConverterModuleWithDefaultDictionaryTests",
dependencies: [
"KanaKanjiConverterModuleWithDefaultDictionary",
.product(name: "Collections", package: "swift-collections")
],
swiftSettings: swiftSettings
)
]
#if os(Linux) && !canImport(Android)
func checkObjcAvailability() -> Bool {
do {
let linkCheck = Process()
linkCheck.executableURL = URL(fileURLWithPath: "/bin/sh")
linkCheck.arguments = ["-c", "echo 'int main() { return 0; }' | clang -x c - -lobjc -o /dev/null"]
try linkCheck.run()
linkCheck.waitUntilExit()
if linkCheck.terminationStatus != 0 {
print("Cannot link with -lobjc")
return false
}
return true
} catch {
print("Error checking Objective-C availability: \(error)")
return false
}
}
if checkObjcAvailability() {
print("Objective-C runtime is available")
targets = targets.map { target in
if target.name == "CliTool" || target.name == "KanaKanjiConverterModuleWithDefaultDictionaryTests" {
let modifiedTarget = target
modifiedTarget.linkerSettings = [.linkedLibrary("objc")]
return modifiedTarget
}
return target
}
}
#endif
#if os(Windows) || os(Linux)
let llamaCppTarget: Target = .systemLibrary(name: "llama.cpp")
#else
let llamaCppTarget: Target = .binaryTarget(
name: "llama.cpp",
url: "https://github.com/azooKey/llama.cpp/releases/download/b4846/signed-llama.xcframework.zip",
// this can be computed `swift package compute-checksum llama-b4844-xcframework.zip`
checksum: "db3b13169df8870375f212e6ac21194225f1c85f7911d595ab64c8c790068e0a"
)
#endif
targets.append(llamaCppTarget)
targets.append(
.target(
name: "KanaKanjiConverterModule",
dependencies: [
"SwiftUtils",
.target(name: "EfficientNGram", condition: .when(traits: ["Zenzai"])),
.target(name: "llama.cpp", condition: .when(traits: ["Zenzai"])),
.product(name: "Collections", package: "swift-collections"),
],
swiftSettings: swiftSettings
)
)
let package = Package(
name: "AzooKeyKanakanjiConverter",
platforms: [.iOS(.v16), .macOS(.v13)],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "SwiftUtils",
targets: ["SwiftUtils"]
),
///
.library(
name: "KanaKanjiConverterModuleWithDefaultDictionary",
targets: ["KanaKanjiConverterModuleWithDefaultDictionary"]
),
///
.library(
name: "KanaKanjiConverterModule",
targets: ["KanaKanjiConverterModule"]
),
],
traits: [
.trait(name: "Zenzai"),
.default(enabledTraits: [])
],
dependencies: dependencies,
targets: targets
)