forked from wtw-software/ios-UTMConversion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUTMConversion.podspec
More file actions
25 lines (25 loc) · 840 Bytes
/
UTMConversion.podspec
File metadata and controls
25 lines (25 loc) · 840 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
Pod::Spec.new do |s|
s.name = 'UTMConversion'
s.version = '1.4.0'
s.swift_version = '5.0'
s.cocoapods_version = '>= 1.4.0'
s.summary = 'Convert between latitude/longitude and the UTM coordinate system.'
s.description = <<~DESC
Convert between latitude/longitude and the UTM (Universal Transverse Mercator) coordinate systems.
The conversion happens between a custom struct UTMCoordinate and CoreLocation's CLLocationCoordinate2D and CLLocation.
DESC
s.homepage = 'https://github.com/wtw-software/UTMConversion'
s.license = {
type: 'MIT',
file: 'LICENSE'
}
s.authors = {
'Peter Ringset' => 'peter@ringset.no'
}
s.ios.deployment_target = '8.0'
s.source = {
git: 'https://github.com/wtw-software/UTMConversion.git',
tag: s.version
}
s.source_files = 'UTMConversion/*.{swift,h}'
end