|
1 | 1 | Pod::Spec.new do |s| |
2 | | - s.name = 'SOAPEngine' |
3 | | - s.version = '1.45' |
4 | | - s.summary = 'This generic SOAP client allows you to access web services using a your iOS and Mac OS X app.' |
5 | | - s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' } |
6 | | - s.authors = { 'Danilo Priore' => 'support@prioregroup.com' } |
7 | | - s.homepage = 'https://github.com/priore/SOAPEngine' |
8 | | - s.social_media_url = 'https://twitter.com/danilopriore' |
9 | | - s.libraries = 'xml2' |
10 | | - s.source = { git: 'https://github.com/priore/SOAPEngine.git', :tag => "#{s.version}" } |
11 | | - s.xcconfig = { 'HEADER_SEARCH_PATHS' => "${PODS_ROOT}/#{s.name}/**" } |
12 | | - s.frameworks = 'Security' |
| 2 | + s.name = 'SOAPEngine' |
| 3 | + s.version = '1.45' |
| 4 | + s.summary = 'This generic SOAP client allows you to access web services using your iOS, macOS, and tvOS app.' |
| 5 | + s.description = <<-DESC |
| 6 | + A comprehensive and generic SOAP client for Apple platforms, allowing easy access and communication with web services. |
| 7 | + DESC |
| 8 | + s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' } |
| 9 | + s.authors = { 'Danilo Priore' => 'support@prioregroup.com' } |
| 10 | + s.homepage = 'https://github.com/priore/SOAPEngine' |
| 11 | + s.social_media_url = 'https://twitter.com/danilopriore' |
| 12 | + s.source = { git: 'https://github.com/priore/SOAPEngine.git', :tag => "#{s.version}" } |
| 13 | + s.requires_arc = true |
| 14 | + s.pod_target_xcconfig = { |
| 15 | + 'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES', |
| 16 | + 'OTHER_LDFLAGS' => '-lxml2' |
| 17 | + } |
| 18 | + s.libraries = 'xml2' |
| 19 | + s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' } |
| 20 | + s.source_files = 'SOAPEngine/**/*.{h,m,pch}' |
| 21 | + s.public_header_files = 'SOAPEngine/Headers/*.h' |
| 22 | + s.ios.deployment_target = '12.0' |
| 23 | + s.ios.framework = 'Accounts' |
| 24 | + s.ios.frameworks = 'Security' |
| 25 | + s.osx.deployment_target = '10.13' |
| 26 | + s.osx.framework = 'AppKit' |
| 27 | + s.osx.frameworks = 'Security' |
| 28 | + s.osx.framework = 'Accounts' |
| 29 | + s.tvos.deployment_target = '12.0' |
| 30 | + s.tvos.frameworks = 'Security' |
13 | 31 |
|
14 | | - s.ios.deployment_target = '7.1' |
15 | | - s.ios.public_header_files = 'SOAPEngine/Headers/*.h' |
16 | | - s.ios.source_files = 'SOAPEngine/*.{h,m}' |
17 | | - s.ios.xcconfig = { 'HEADER_SEARCH_PATHS' => '/usr/include/libxml2' } |
18 | | - s.ios.framework = 'Accounts' |
19 | | - |
20 | | - s.osx.deployment_target = '10.9' |
21 | | - s.osx.public_header_files = 'SOAPEngine/Headers/*.h' |
22 | | - s.osx.source_files = 'SOAPEngine/*.{h,m}' |
23 | | - s.osx.framework = 'AppKit' |
24 | | - s.osx.framework = 'Accounts' |
25 | | - |
26 | | - s.tvos.deployment_target = '9.0' |
27 | | - s.tvos.public_header_files = 'SOAPEngine/Headers/*.h' |
28 | | - s.tvos.source_files = 'SOAPEngine/*.{h,m}' |
29 | | - s.tvos.xcconfig = { 'HEADER_SEARCH_PATHS' => '/usr/include/libxml2' } |
30 | 32 | end |
0 commit comments