forked from NMSSH/NMSSH
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNMSSH.podspec
25 lines (20 loc) · 947 Bytes
/
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
Pod::Spec.new do |s|
s.name = "NMSSH"
s.version = "1.2.1"
s.summary = "NMSSH is a clean, easy-to-use, unit tested framework for iOS and OSX that wraps libssh2."
s.homepage = "https://github.com/Lejdborg/NMSSH"
s.license = 'MIT'
s.author = { "Christoffer Lejdborg" => "[email protected]", "Tommaso Madonia" => "[email protected]", "@Shirk" => "", "Endika Gutiérrez" => "[email protected]" }
s.source = { :git => "https://github.com/Lejdborg/NMSSH.git", :tag => s.version.to_s }
s.source_files = 'NMSSH', 'NMSSH/**/*.{h,m}'
s.requires_arc = true
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.libraries = 'z', 'ssl', 'ssh2', 'crypto'
s.ios.source_files = 'NMSSH-iOS', 'NMSSH-iOS/**/*.h'
s.ios.preserve_paths = 'NMSSH-iOS'
s.xcconfig = {
"OTHER_LDFLAGS" => "-ObjC",
"LIBRARY_SEARCH_PATHS" => '"$(PODS_ROOT)/NMSSH/NMSSH-iOS/Libraries/lib"'
}
end