-
-
Notifications
You must be signed in to change notification settings - Fork 126
/
TPPDF.podspec
25 lines (21 loc) · 978 Bytes
/
TPPDF.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
Pod::Spec.new do |s|
s.name = 'TPPDF'
s.version = '2.6.1'
s.summary = 'TPPDF is a simple-to-use PDF builder for iOS'
s.description = <<-DESC
TPPDF is an object-based PDF builder, completely built in Swift.
You create a document by defining, adding and positioning different objects.
TPPDF then calculates the layout and renders a PDF file.
DESC
s.homepage = 'https://github.com/techprimate/TPPDF'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Philip Niedertscheider' => '[email protected]' }
s.source = { :git => 'https://github.com/techprimate/TPPDF.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/techprimate'
s.source_files = 'Source/**/*'
s.swift_version = '5.2'
s.ios.framework = 'UIKit'
s.ios.deployment_target = '9.0'
s.osx.framework = 'AppKit'
s.osx.deployment_target = '10.14'
end