-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTextAnnotation.podspec
More file actions
23 lines (19 loc) · 951 Bytes
/
TextAnnotation.podspec
File metadata and controls
23 lines (19 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'TextAnnotation'
s.version = '0.6.2'
s.summary = 'Swift text annotation component for macOS.'
s.description = <<-DESC
Text component that behaves like typical drawing or annotation apps require.
DESC
s.homepage = 'https://github.com/blackbeltlabs/TextAnnotation'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Mirko Kiefer' => 'mail@mirkokiefer.com' }
s.source = { :git => 'https://github.com/blackbeltlabs/TextAnnotation.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.platform = :osx
s.osx.deployment_target = "10.13"
s.swift_version = "5.0"
s.source_files = 'TextAnnotation/Classes/**/*'
s.resources = 'TextAnnotation/Assets/**/*'
end