OpenSSL.podspec 726 B

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