forked from ngageoint/geopackage-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
geopackage-ios.podspec
25 lines (20 loc) · 921 Bytes
/
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
Pod::Spec.new do |s|
s.name = 'geopackage-ios'
s.version = '1.2.1'
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' => 'osbornb@bit-sys.com' }
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.platform = :ios, '8.0'
s.ios.deployment_target = '8.0'
s.source_files = 'geopackage-ios/**/*.{h,m}'
s.resource_bundle = { 'GeoPackage' => ['geopackage-ios/**/*.plist'] }
s.frameworks = 'Foundation'
s.library = 'sqlite3'
s.dependency 'AFNetworking', '~> 3.1'
s.dependency 'proj4', '~> 4.8'
s.dependency 'wkb-ios', '~> 1.0.6'
end