-
Notifications
You must be signed in to change notification settings - Fork 151
/
Seafile.podspec
23 lines (22 loc) · 986 Bytes
/
Seafile.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "Seafile"
s.version = "2.9.30"
s.summary = "iOS client for seafile."
s.homepage = "https://github.com/haiwen/seafile-iOS"
s.license = 'MIT'
s.author = { "wei.wang" => "poetwang@gmail.com" }
s.source = { :git => "https://github.com/haiwen/seafile-iOS.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/Seafile'
s.source_files = 'Pod/Classes/*.{h,m}', 'Pod/Classes/Database/*.{h,m}'
s.resource_bundles = { 'Seafile' => 'Pod/Resources/*' }
s.platform = :ios, '9.0'
s.requires_arc = true
s.frameworks = 'AssetsLibrary'
s.dependency 'AFNetworking', '~> 4.0.0'
s.dependency 'OpenSSL-Universal', '~> 1.0.1.p'
s.dependency 'Realm', '~> 10.45.0'
s.pod_target_xcconfig = {
'LIBRARY_SEARCH_PATHS' => '$(inherited) $(PODS_ROOT)/OpenSSL-Universal/lib-ios/',
'OTHER_LDFLAGS' => '$(inherited) -lssl -lcrypto'
}
end