forked from kewlbear/YoutubeDL-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
26 lines (24 loc) · 790 Bytes
/
Package.swift
File metadata and controls
26 lines (24 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "YoutubeDL-iOS",
platforms: [.iOS(.v13),],
products: [
.library(
name: "YoutubeDL",
targets: ["YoutubeDL"]),
],
dependencies: [
.package(url: "https://github.com/kewlbear/FFmpeg-iOS-Lame", from: "0.0.6-b20230730-000000"),
.package(url: "https://github.com/pvieito/PythonKit.git", from: "0.3.1"),
.package(url: "https://github.com/kewlbear/Python-iOS.git", from: "0.1.1-b"),
],
targets: [
.target(
name: "YoutubeDL",
dependencies: ["Python-iOS", "PythonKit", "FFmpeg-iOS-Lame"]),
.testTarget(
name: "YoutubeDL_iOSTests",
dependencies: ["YoutubeDL"]),
]
)