forked from TabbedOut/SodiumObjc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSodiumObjc.podspec
24 lines (20 loc) · 929 Bytes
/
SodiumObjc.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
Pod::Spec.new do |s|
s.name = "SodiumObjc"
s.version = "1.1"
s.summary = "SodiumObjc is a wrapper for NaCl"
s.description = <<-DESC
SodiumObjc is a wrapper for NaCl, providing Obj-C methods for it.
DESC
s.homepage = "https://github.com/Tabbedout/SodiumObjc"
s.license = 'MIT'
s.author = { "Damian Carrillo" => "[email protected]" }
s.source = { :git => "https://github.com/Tabbedout/SodiumObjc.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'SodiumObjc', 'lib/ios/include/{*.h,sodium/*.h}'
s.public_header_files = 'SodiumObjc/*.h', 'lib/ios/include/**'
s.preserve_paths = 'lib/ios/libsodium-ios.a'
s.ios.vendored_libraries = 'lib/ios/libsodium-ios.a'
s.libraries = 'sodium-ios'
s.frameworks = 'Security'
end