-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAnnotations.podspec
More file actions
22 lines (18 loc) · 933 Bytes
/
Annotations.podspec
File metadata and controls
22 lines (18 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'Annotations'
s.version = '0.9.6'
s.summary = 'Swift shape and text annotation component for macOS.'
s.description = <<-DESC
A component that can be used for apps providing visual annotation support of screenshots or other images.
The component supports free-hand drawing, text boxes as well as shape annotations via arrows or rectangles.
DESC
s.homepage = 'https://github.com/blackbeltlabs/Annotations'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Mirko Kiefer' => 'mail@mirkokiefer.com' }
s.source = { :git => 'https://github.com/blackbeltlabs/Annotations.git', :tag => s.version.to_s }
s.platform = :osx
s.osx.deployment_target = "10.13"
s.swift_version = "5.0"
s.source_files = 'Sources/Classes/**/*'
s.resources = 'Sources/Assets/Assets.xcassets'
end