-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathGEOSwiftMapKit.podspec
More file actions
28 lines (28 loc) · 991 Bytes
/
GEOSwiftMapKit.podspec
File metadata and controls
28 lines (28 loc) · 991 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
28
Pod::Spec.new do |s|
s.name = 'GEOSwiftMapKit'
s.version = '5.0.0'
s.swift_version = '5.9'
s.cocoapods_version = '~> 1.10'
s.summary = 'MapKit support for GEOSwift'
s.description = <<~DESC
Easily handle a geometric object model (points, linestrings, polygons etc.) and related
topological operations (intersections, overlapping etc.). A type-safe, MIT-licensed Swift
interface to the OSGeo's GEOS library routines, nicely integrated with MapKit.
DESC
s.homepage = 'https://github.com/GEOSwift/GEOSwiftMapKit'
s.license = {
type: 'MIT',
file: 'LICENSE'
}
s.authors = 'Andrew Hershberger'
s.ios.deployment_target = '12.0'
s.macos.deployment_target = '10.13'
s.tvos.deployment_target = '12.0'
s.source = {
git: 'https://github.com/GEOSwift/GEOSwiftMapKit.git',
tag: s.version
}
s.source_files = 'Sources/**/*.swift'
s.macos.exclude_files = 'GEOSwiftMapKit/GEOSwift+MapKitQuickLook.swift'
s.dependency 'GEOSwift', '~> 11.0'
end