OpenSSL.podspec 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. Pod::Spec.new do |s|
  2. s.name = "OpenSSL"
  3. s.version = "1.0.1.i"
  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://www.openssl.org/"
  7. s.license = { :type => 'OpenSSL (OpenSSL/SSLeay)', :file => 'LICENSE.txt' }
  8. s.source = { :git => "https://github.com/krzak/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, '5.1.1'
  26. s.ios.deployment_target = '5.1.1'
  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.7'
  34. s.osx.source_files = 'include-osx/openssl/**/*.h'
  35. s.osx.public_header_files = 'include-osx/openssl/**/*.h'
  36. s.osx.header_dir = 'openssl'
  37. s.osx.preserve_paths = 'lib-osx/libcrypto.a', 'lib-osx/libssl.a'
  38. s.osx.vendored_libraries = 'lib-osx/libcrypto.a', 'lib-osx/libssl.a'
  39. s.libraries = 'ssl', 'crypto'
  40. end