-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwPSSH.podspec
More file actions
19 lines (19 loc) · 1.11 KB
/
SwPSSH.podspec
File metadata and controls
19 lines (19 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |spec|
spec.name = "SwPSSH"
spec.version = "1.2.3"
spec.summary = "Protection System Specific Header (PSSH) box container swift impl. Supports Widevine, PlayReady and Nagra"
spec.homepage = "https://github.com/mIwr/SwPSSH"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "mIwr" => "https://github.com/mIwr" }
spec.osx.deployment_target = "10.13"
spec.ios.deployment_target = "11.0"
spec.tvos.deployment_target = "11.0"
spec.watchos.deployment_target = "4.0"
spec.swift_versions = ["5.3", "5.9", "5.10", "6.0"]
spec.swift_version = "5.3"
spec.source = { :git => "https://github.com/mIwr/SwPSSH.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/SwPSSH/*.swift", "Sources/SwPSSH/**/*.swift"
spec.framework = "Foundation"
spec.dependency "SwiftProtobuf"
spec.resource_bundles = {'SwPSSH' => ['Sources/SwPSSH/PrivacyInfo.xcprivacy']}
end