-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLEPDFParser.podspec
More file actions
27 lines (18 loc) · 883 Bytes
/
LEPDFParser.podspec
File metadata and controls
27 lines (18 loc) · 883 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
27
Pod::Spec.new do |s|
s.name = "LEPDFParser"
s.version = "0.1"
s.summary = "Parse PDF metadata in Swift."
s.description = <<-DESC
LEPDFParser adds a single calculated property to PDFKit's PDFPage called 'dictionary'. It will contain the metadata of the page, including gepgraphical data for geo-tagged PDF documents.
DESC
s.license = "MIT"
s.author = { "Ludvig Eriksson" => "ludvigeriksson@icloud.com" }
s.homepage = "https://github.com/ludvigeriksson/LEPDFParser"
s.platform = :ios
s.ios.deployment_target = "11.0"
s.swift_version = "4.0"
s.source = { :git => "https://github.com/ludvigeriksson/LEPDFParser.git", :tag => "#{s.version}" }
s.source_files = "LEPDFParser/Classes", "LEPDFParser/Classes/*.{h,m,swift}"
s.exclude_files = "Classes/Exclude"
s.framework = "PDFKit"
end