2021-11-06 10:42:43 +00:00
|
|
|
// swift-tools-version:5.3
|
2021-10-25 10:07:44 +00:00
|
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
|
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
let package = Package(
|
|
|
|
name: "openssl-apple",
|
|
|
|
products: [
|
|
|
|
.library(
|
|
|
|
name: "openssl-apple",
|
|
|
|
targets: ["openssl"]),
|
|
|
|
],
|
|
|
|
dependencies: [
|
|
|
|
],
|
|
|
|
targets: [
|
|
|
|
.binaryTarget(
|
|
|
|
name: "openssl",
|
2024-10-16 07:13:06 +00:00
|
|
|
url: "https://github.com/passepartoutvpn/openssl-apple/releases/download/3.2.108/openssl.xcframework.zip",
|
|
|
|
checksum: "3b42bf3d19a113f9b3d38def711ec693c6be65683afba13f94eec4ad4fee5b67"),
|
2024-01-13 11:35:46 +00:00
|
|
|
|
|
|
|
// local development
|
|
|
|
// .binaryTarget(
|
|
|
|
// name: "openssl",
|
|
|
|
// path: "frameworks/openssl.xcframework.zip")
|
2021-10-25 10:07:44 +00:00
|
|
|
]
|
|
|
|
)
|