forked from GEOSwift/GEOSwift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGEOSwift.podspec
34 lines (27 loc) · 1.2 KB
/
GEOSwift.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
Pod::Spec.new do |s|
s.name = "GEOSwift"
s.version = "0.5.1"
s.summary = "The Swift Geographic Engine."
s.description = <<-DESC
Easily handle a geographical object model (points, linestrings, polygons etc.) and related topographical operations (intersections, overlapping etc.).
A type-safe, MIT-licensed Swift interface to the OSGeo's GEOS library routines, nicely integrated with MapKit and Quicklook.
DESC
s.homepage = "https://github.com/andreacremaschi/GEOSwift"
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Andrea Cremaschi" => "[email protected]" }
s.social_media_url = "http://twitter.com/andreacremaschi"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/andreacremaschi/GEOSwift.git", :tag => "0.5.1" }
s.subspec 'Core' do |cs|
cs.source_files = "GEOSwift/*"
cs.dependency "geos", "3.5.0"
end
# Mapbox support
s.subspec 'MapboxGL' do |cs|
cs.source_files = "GEOSwift/MapboxGL"
cs.dependency "GEOSwift/Core"
cs.dependency "Mapbox-iOS-SDK"
end
s.default_subspec = 'Core'
end