OpenSSL-Universal.podspec 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. Pod::Spec.new do |s|
  2. s.name = "OpenSSL-Universal"
  3. s.version = "1.0.1.#{("a".."z").to_a.index 't'}"
  4. s.summary = "OpenSSL for iOS and OS X"
  5. s.description = "OpenSSL is an SSL/TLS and Crypto toolkit. Deprecated in Mac OS and gone in iOS, this spec gives your project non-deprecated OpenSSL support. Supports OSX and iOS including Simulator (armv7,armv7s,arm64,i386,x86_64)."
  6. s.homepage = "http://krzyzanowskim.github.io/OpenSSL/"
  7. s.license = { :type => 'OpenSSL (OpenSSL/SSLeay)', :file => 'LICENSE.txt' }
  8. s.source = { :git => "https://github.com/krzyzanowskim/OpenSSL.git", :tag => "#{s.version}" }
  9. s.authors = {'Mark J. Cox' => 'mark@openssl.org',
  10. 'Ralf S. Engelschall' => 'rse@openssl.org',
  11. 'Dr. Stephen Henson' => 'steve@openssl.org',
  12. 'Ben Laurie' => 'ben@openssl.org',
  13. 'Lutz Jänicke' => 'jaenicke@openssl.org',
  14. 'Nils Larsch' => 'nils@openssl.org',
  15. 'Richard Levitte' => 'nils@openssl.org',
  16. 'Bodo Möller' => 'bodo@openssl.org',
  17. 'Ulf Möller' => 'ulf@openssl.org',
  18. 'Andy Polyakov' => 'appro@openssl.org',
  19. 'Geoff Thorpe' => 'geoff@openssl.org',
  20. 'Holger Reif' => 'holger@openssl.org',
  21. 'Paul C. Sutton' => 'geoff@openssl.org',
  22. 'Eric A. Young' => 'eay@cryptsoft.com',
  23. 'Tim Hudson' => 'tjh@cryptsoft.com',
  24. 'Justin Plouffe' => 'plouffe.justin@gmail.com'}
  25. s.ios.platform = :ios, '6.0'
  26. s.ios.deployment_target = '6.0'
  27. s.ios.source_files = 'include-ios/openssl/**/*.h'
  28. s.ios.public_header_files = 'include-ios/openssl/**/*.h'
  29. s.ios.header_dir = 'openssl'
  30. s.ios.preserve_paths = 'lib-ios/libcrypto.a', 'lib-ios/libssl.a'
  31. s.ios.vendored_libraries = 'lib-ios/libcrypto.a', 'lib-ios/libssl.a'
  32. s.osx.platform = :osx, '10.9'
  33. s.osx.deployment_target = '10.8'
  34. s.osx.source_files = 'include-macos/openssl/**/*.h'
  35. s.osx.public_header_files = 'include-macos/openssl/**/*.h'
  36. s.osx.header_dir = 'openssl'
  37. s.osx.preserve_paths = 'lib-macos/libcrypto.a', 'lib-macos/libssl.a'
  38. s.osx.vendored_libraries = 'lib-macos/libcrypto.a', 'lib-macos/libssl.a'
  39. s.libraries = 'ssl', 'crypto'
  40. s.requires_arc = false
  41. end