-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathPDFXKit.podspec
38 lines (31 loc) · 1.41 KB
/
PDFXKit.podspec
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
27
28
29
30
31
32
33
34
35
36
37
38
#
# Copyright (c) 2017-2020 PSPDFKit GmbH. All rights reserved.
#
# The PDFXKit is licensed with a modified BSD license. Please see License for
# details. This notice may not be removed from this file.
#
Pod::Spec.new do |spec|
spec.name = "PDFXKit"
spec.version = "0.1.0"
spec.summary = "Apple PDFKit source-compatible wrapper for PSPDFKit."
spec.documentation_url = 'https://pspdfkit.com/guides/ios/current/migration-guides/migrating-from-apple-pdfkit/'
spec.description = """
PDFXKit is a drop-in replacement giving you the same API as PDFKit while
using PSPDFKit under the hood — only a few tweaks required. PDFXKit gives
you full access to the underlying PSPDFKit allowing you take take advantage
of all PSPDFKit features, components, and tools if and when you need them.
"""
spec.homepage = "http://github.com/PSPDFKit/PDFXKit"
spec.license = { :type => "BSD (modified)", :file => "LICENSE.md" }
spec.author = { "PSPDFKit GmbH" => "[email protected]" }
spec..social_media_url = "http://twitter.com/pspdfkit"
spec.platform = :ios, "12.0"
spec.ios.deployment_target = "12.0"
spec.source = { :git => "[email protected]:PSPDFKit/PDFXKit.git", :branch => "master" }
spec.source_files = "Sources", "Sources/**/*.{h,m,swift}"
spec.public_header_files = "Sources/**/*.h"
spec.requires_arc = true
spec.swift_version = '5.0'
spec.frameworks = "PDFKit"
spec.dependency "PSPDFKit"
end