Skip to content

Commit

Permalink
Draft Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
jurvis committed Apr 15, 2022
1 parent b9fb393 commit 06b6492
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// swift-tools-version:5.3
import PackageDescription

let tag = "0.0.7"
let checksum = "248516a8014f910ab786eb31f48cb2fced2fb527d3378520cf1e13b1324d38b9"
let url = "https://github.com/jurvis/libwally-swift/releases/download/\(tag)/LibwallySwift.xcframework.zip"

let package = Package(
name: "LibWallySwift",
platforms: [
.iOS(.v11)
],
products: [
.library(
name: "LibWally",
targets: ["LibWally"]
)
],
targets: [
.binaryTarget(
name: "LibWally",
url: url,
checksum: checksum
)
]
)

0 comments on commit 06b6492

Please sign in to comment.