-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathgeopackage-ios.podspec
27 lines (23 loc) · 1.08 KB
/
geopackage-ios.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
Pod::Spec.new do |s|
s.name = 'geopackage-ios'
s.version = '8.0.7'
s.license = {:type => 'MIT', :file => 'LICENSE' }
s.summary = 'iOS SDK for GeoPackage'
s.homepage = 'https://github.com/ngageoint/geopackage-ios'
s.authors = { 'NGA' => '', 'BIT Systems' => '', 'Brian Osborn' => '[email protected]' }
s.social_media_url = 'https://twitter.com/NGA_GEOINT'
s.source = { :git => 'https://github.com/ngageoint/geopackage-ios.git', :tag => s.version }
s.requires_arc = true
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.platform = :ios, '12.0'
s.ios.deployment_target = '12.0'
s.source_files = 'geopackage-ios/**/*.{h,m}'
s.resource_bundle = { 'geopackage-ios' => ['geopackage-ios/**/geopackage*.plist'] }
s.frameworks = 'Foundation'
s.dependency 'sf-wkb-ios', '~> 4.1.4'
s.dependency 'sf-wkt-ios', '~> 2.1.4'
s.dependency 'sf-proj-ios', '~> 6.0.3'
s.dependency 'ogc-api-features-json-ios', '~> 4.2.5'
s.dependency 'color-ios', '~> 1.0.2'
s.dependency 'tiff-ios', '~> 4.0.2'
end