Merge pull request #1 from sashabaranov/master

Added podspec
This commit is contained in:
Oleg Geier
2018-08-19 23:28:31 +02:00
committed by GitHub

27
RSXML.podspec Normal file
View File

@@ -0,0 +1,27 @@
Pod::Spec.new do |s|
s.name = 'RSXML'
s.version = '1.0'
s.summary = 'This is utility code for parsing XML and HTML using libXML2s SAX parser.'
s.description = <<-DESC
This is utility code for parsing XML and HTML using libXML2s SAX parser.
It builds two framework targets: one for Mac, one for iOS. It does not depend on any other third-party frameworks. The code is Objective-C with ARC.
DESC
s.homepage = 'https://github.com/brentsimmons/RSXML'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Brent Simmons' => '' }
s.source = { :git => 'https://github.com/brentsimmons/RSXML.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.source_files = 'RSXML/*'
s.public_header_files = 'RSXML/*.h'
s.libraries = 'xml2.2'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
end