forked from couchbase/couchbase-lite-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCouchbaseLite.podspec
22 lines (18 loc) · 977 Bytes
/
CouchbaseLite.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'CouchbaseLite'
s.version = '3.1.0'
s.license = 'Apache License, Version 2.0'
s.homepage = 'https://github.com/couchbase/couchbase-lite-ios'
s.summary = 'An embedded syncable NoSQL database for iOS and MacOS apps.'
s.author = 'Couchbase'
s.source = { :git => 'https://github.com/couchbase/couchbase-lite-ios.git', :tag => s.version, :submodules => true }
s.prepare_command = <<-CMD
sh Scripts/prepare_cocoapods.sh "CBL_ObjC"
CMD
s.ios.preserve_paths = 'frameworks/CBL_ObjC/iOS/CouchbaseLite.framework'
s.ios.vendored_frameworks = 'frameworks/CBL_ObjC/iOS/CouchbaseLite.framework'
s.osx.preserve_paths = 'frameworks/CBL_ObjC/macOS/CouchbaseLite.framework'
s.osx.vendored_frameworks = 'frameworks/CBL_ObjC/macOS/CouchbaseLite.framework'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
end