forked from hyperledger-archives/indy-sdk
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Indy.podspec
27 lines (27 loc) · 1.03 KB
/
Indy.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
# Temporary podspec in the fork
Pod::Spec.new do |spec|
spec.name = 'Indy'
spec.version = '1.16.1'
spec.license = 'Apache License 2.0'
spec.homepage = 'https://github.com/hyperledger/indy-sdk'
spec.authors = {'Hyperledger Indy Contributors' => 'hyperledger-indy@lists.hyperledger.org'}
spec.summary = 'libindy objective-C wrapper'
spec.source = {:git => 'https://github.com/conanoc/indy-sdk.git', :branch => 'master'}
spec.source_files = 'wrappers/ios/libindy-pod/Indy/**/*'
spec.exclude_files = [
'wrappers/ios/libindy-pod/Indy/Info.plist',
'wrappers/ios/libindy-pod/Indy/Wrapper/BlobStorage.*'
]
spec.public_header_files = [
'wrappers/ios/libindy-pod/Indy/Indy.h',
'wrappers/ios/libindy-pod/Indy/Wrapper/*.h',
'wrappers/ios/libindy-pod/Indy/Utils/IndyLogger.h'
]
spec.libraries = 'sqlite3'
spec.platform = :ios, '10.0'
spec.static_framework = true
spec.dependency 'libsodium'
spec.dependency 'libzmq', '4.2.3'
spec.dependency 'OpenSSL-XM'
spec.dependency 'libindy', '1.16.0'
end