OpenSSL.podspec 716 B

123456789101112131415161718
  1. Pod::Spec.new do |s|
  2. s.name = "OpenSSL"
  3. s.version = "1.0.1e"
  4. s.summary = "Pre-built OpenSSL for iOS."
  5. s.description = "Supports iPhone Simulator, armv7 and armv7s."
  6. s.homepage = "https://github.com/justinplouffe/OpenSSL"
  7. s.license = 'OpenSSL (OpenSSL/SSLeay)'
  8. s.author = 'Justin Plouffe'
  9. s.source = { :git => "https://github.com/justinplouffe/OpenSSL.git", :tag => "1.0.1e" }
  10. s.platform = :ios, '6.0'
  11. s.source_files = 'include/openssl/**/*.h'
  12. s.public_header_files = 'include/openssl/**/.h'
  13. s.preserve_paths = 'libcrypto.a', 'libssl.a'
  14. s.library = 'crypto', 'ssl'
  15. s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(SRCROOT)/Pods/OpenSSL"' }
  16. end