-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathLibxml2Module.podspec
More file actions
24 lines (20 loc) · 910 Bytes
/
Libxml2Module.podspec
File metadata and controls
24 lines (20 loc) · 910 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 = '2.13.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:CT-Software/Libxml2Module.git', tag: "2.13.5" }
s.platform = :ios, '16.0'
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