forked from ctsf/Libxml2Module
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLibxml2Module.podspec
More file actions
24 lines (20 loc) · 891 Bytes
/
Libxml2Module.podspec
File metadata and controls
24 lines (20 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = 'Libxml2Module'
s.version = '0.0.5'
s.summary = 'libxml wrapper to use it in Objective-C modules and in Swift'
s.homepage = 'https://github.com/pilot34/Libxml2Module'
s.license = 'MIT'
s.author = { "gtarasov" => "gleb34@gmail.com" }
s.source = { git: 'git@github.com:Agisight/Libxml2Module.git' }
s.platform = :ios, '16.1'
s.libraries = 'xml2'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(PODS_ROOT)/Libxml2Module/headers' }
s.pod_target_xcconfig = { 'HEADER_SEARCH_PATHS' => '$(PODS_ROOT)/Libxml2Module/headers' }
s.module_map = 'Libxml2.modulemap'
s.module_name = 'Libxml2'
s.source_files = 'dummy-source.m', 'headers/*.h'
s.public_header_files = 'headers/*.h'
s.prepare_command = <<-CMD
ruby module_parser.rb > Libxml2.modulemap
CMD
end