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-03-10 21:09:53 +00:00
|
|
|
url: "https://github.com/passepartoutvpn/openssl-apple/releases/download/3.2.107/openssl.xcframework.zip",
|
|
|
|
checksum: "6aa5b917eb03487978b5d6ab1c019127af4f67568bd1f793c5b58cf786a49399"),
|
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
|
|
|
]
|
|
|
|
)
|