forked from m0nac0/maplibre-annotation-extension
-
Notifications
You must be signed in to change notification settings - Fork 1
/
MapLibreAnnotationExtension.podspec
40 lines (23 loc) · 2.21 KB
/
MapLibreAnnotationExtension.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
39
40
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "MapLibreAnnotationExtension"
s.version = "0.0.1-beta.2"
s.summary = "Extension to support Maplibre's runtime styling annotations api."
s.description = "Provides an object oriented annotation api around runtime styling."
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "ISC", :file => "LICENSE.md" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.authors = { 'm0nac0' => 'github.com/m0nac0' }
s.homepage = "https://github.com/m0nac0/maplibre-annotation-extension"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios, "9.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/m0nac0/maplibre-annotation-extension.git" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "MapboxAnnotationExtension/**/*.{h,m}"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
s.module_name = "MapLibreAnnotationExtension"
s.dependency "MapLibre", "~> 5.12.0"
s.ios.deployment_target = '9.0'
end