forked from NMSSH/NMSSH
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNMSSH.podspec
30 lines (23 loc) · 1.15 KB
/
NMSSH.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
28
29
30
Pod::Spec.new do |spec|
spec.name = "NMSSH"
spec.version = "2.2.2"
spec.summary = "NMSSH is a clean, easy-to-use, unit tested framework for iOS and OSX that wraps libssh2."
spec.homepage = "https://github.com/Lejdborg/NMSSH"
spec.license = 'MIT'
spec.authors = { "Christoffer Lejdborg" => "[email protected]", "Tommaso Madonia" => "[email protected]" }
spec.source = { :git => "https://github.com/Lejdborg/NMSSH.git", :tag => spec.version.to_s }
spec.requires_arc = true
spec.source_files = 'NMSSH', 'NMSSH/**/*.{h,m}'
spec.libraries = 'z'
spec.ios.deployment_target = '5.0'
spec.ios.framework = 'CFNetwork'
spec.ios.vendored_libraries = 'NMSSH-iOS/Libraries/lib/libssh2.a', 'NMSSH-iOS/Libraries/lib/libssl.a', 'NMSSH-iOS/Libraries/lib/libcrypto.a'
spec.ios.source_files = 'NMSSH-iOS', 'NMSSH-iOS/**/*.h'
spec.osx.deployment_target = '10.7'
spec.osx.libraries = 'ssl', 'crypto'
spec.osx.vendored_libraries = 'NMSSH-OSX/Libraries/lib/libssh2.a'
spec.osx.source_files = 'NMSSH-OSX', 'NMSSH-OSX/**/*.h'
spec.xcconfig = {
"OTHER_LDFLAGS" => "-ObjC",
}
end