forked from Project-OSRM/osrm-text-instructions.swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OSRMTextInstructions.podspec
53 lines (32 loc) · 2.76 KB
/
OSRMTextInstructions.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
41
42
43
44
45
46
47
48
49
50
51
52
53
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "OSRMTextInstructions"
s.version = "0.6.0"
s.summary = "Transforms OSRM route reponses into human-readable instructions."
s.description = <<-DESC
OSRMTextInstructions transforms OSRM route responses into localized, human-readable turn-by-turn instructions. Primarily intended for use with MapboxDirections.swift.
DESC
s.homepage = "http://project-osrm.org/"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "BSD", :file => "LICENSE.md" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "Mapbox" => "[email protected]" }
s.social_media_url = "https://twitter.com/mapbox"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# When using multiple platforms
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/Project-OSRM/osrm-text-instructions.swift.git", :tag => "v#{s.version.to_s}" }
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.resources = ['OSRMTextInstructions/*.lproj/*.plist']
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "OSRMTextInstructions"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
s.module_name = "OSRMTextInstructions"
s.dependency "MapboxDirections.swift", "~> 2.0"
s.prepare_command = "./json2plist.sh"
end