forked from maplibre/maplibre-navigation-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMapLibreNavigation.podspec
More file actions
40 lines (34 loc) · 1.39 KB
/
MapLibreNavigation.podspec
File metadata and controls
40 lines (34 loc) · 1.39 KB
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|
s.name = 'MaplibreNavigation'
s.module_name = 'MaplibreNavigation'
s.version = '4.0.0'
s.summary = 'Navigation SDK based on Maplibre and forked from Mapbox Navigation.'
s.description = <<-DESC
A Swift-based navigation SDK using MapLibre GL, forked and adapted from Mapbox's Navigation SDK.
DESC
s.homepage = 'https://github.com/IlyesDjari/maplibre-navigation-ios'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.author = { 'Ilyes Djari' => 'ilyes.djari@icapps.com' }
s.source = { :git => 'https://github.com/IlyesDjari/maplibre-navigation-ios.git', :tag => s.version.to_s }
s.static_framework = true
s.platform = :ios, '15.6'
s.swift_version = '5.9'
s.requires_arc = true
s.source_files = [
'MapboxCoreNavigation/**/*.{swift,h,m}',
'MapboxCoreNavigationObjC/**/*.{h,m}',
'MapboxNavigation/**/*.{swift,h,m}',
'MapboxNavigationObjC/**/*.{h,m}'
]
s.public_header_files = 'MapboxDirectionsObjc/include/**/*.h'
s.resources = [
'MapboxCoreNavigation/resources/**/*',
'MapboxNavigation/Resources/MaplibreAssets.xcassets'
]
# Core dependencies
s.dependency 'Turf', '~> 2.8'
s.dependency 'Solar', '2.1'
s.dependency 'MapLibre', '~> 6.0'
s.dependency 'MapboxDirections', '~> 0.23.3'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' }
end