-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathDLSFTPClient.podspec
More file actions
21 lines (19 loc) · 869 Bytes
/
DLSFTPClient.podspec
File metadata and controls
21 lines (19 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "DLSFTPClient"
s.version = "1.0.6"
s.summary = "DLSFTPClient is an SFTP Client library for iOS, using libssh2"
s.homepage = "https://github.com/dleehr/DLSFTPClient"
s.social_media_url = 'https://twitter.com/leehro'
s.license = { :type => 'BSD', :file => 'LICENSE' }
s.author = { "Dan Leehr" => "dan@hammockdistrict.com" }
s.source = {
:git => "https://github.com/dleehr/DLSFTPClient.git",
:tag => s.version.to_s
}
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'DLSFTPClient/Classes/*.{h,m}', 'DLSFTPClient/Libraries/include/**/*.h'
s.vendored_libraries = 'DLSFTPClient/Libraries/lib/libssh2.a', 'DLSFTPClient/Libraries/lib/libssl.a', 'DLSFTPClient/Libraries/lib/libcrypto.a'
s.libraries = 'z'
s.framework = 'Foundation', 'CFNetwork'
end