summaryrefslogtreecommitdiff
path: root/src/mongo/embedded/mongoc_embedded/mongoc_embedded.podspec.in
blob: cb94dab5bc64b13bd6ff131d7dee8896bd178ddf (plain)
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
Pod::Spec.new do |s|

  s.name         = "mongoc_embedded"
  s.version      = "@VERSION@"
  s.summary      = "MongoDB Embedded C Driver Transport"

  s.description  = <<-DESC
    Library providing a client usable by the regular MongoDB C Driver that communicates with the MongoDB Embedded local storage.
                   DESC

  s.homepage     = "https://www.mongodb.com"
  s.author       = { "MongoDB, Inc" => "cocoapods@mongodb.com" }

  s.license      = { :type => "MongoDB Embedded License", :file => "iPhoneOS/Frameworks/mongoc_embedded.framework/LICENSE-Embedded.txt" }

  s.ios.deployment_target = "11.0"
  s.watchos.deployment_target = "4.3"
  s.tvos.deployment_target = "10.2"

  s.source       = { :http => "https://s3.amazonaws.com/mciuploads/mongodb-mongo-v4.0/embedded-sdk/mongoc-embedded-cocoapod-latest.tgz" }

  s.ios.vendored_frameworks = "iPhoneOS/Frameworks/mongoc_embedded.framework"
  s.watchos.vendored_frameworks = "WatchOS/Frameworks/mongoc_embedded.framework"
  s.tvos.vendored_frameworks = "AppleTVOS/Frameworks/mongoc_embedded.framework"

  s.dependency "mongo_embedded", "~> 4.0"
  s.dependency "mongo-c-driver", "~> 1.13"

  # See notes in mongo_embedded.podspec.in.
  s.preserve_path = '**/*.bcsymbolmap'

end