-
Notifications
You must be signed in to change notification settings - Fork 147
/
WordPress-Editor-iOS.podspec
32 lines (25 loc) · 1.17 KB
/
WordPress-Editor-iOS.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# frozen_string_literal: true
Pod::Spec.new do |s|
s.name = 'WordPress-Editor-iOS'
s.version = '1.19.11'
s.summary = 'The WordPress HTML Editor.'
s.description = <<-DESC
The WordPress HTML Editor by Automattic Inc.
This library provides a UITextView subclass with HTML visual editing capabilities.
Use this library if you want to create an App that interacts with WordPress HTML content.
DESC
s.homepage = 'https://github.com/wordpress-mobile/AztecEditor-iOS'
s.license = { type: 'MPLv2', file: 'LICENSE.md' }
s.author = { 'The WordPress Mobile Team' => '[email protected]' }
s.ios.deployment_target = '12.0'
s.swift_version = '5.0'
s.source = { git: 'https://github.com/wordpress-mobile/AztecEditor-iOS.git', tag: s.version.to_s }
s.module_name = 'WordPressEditor'
s.source_files = 'WordPressEditor/WordPressEditor/Classes/**/*'
s.resources = 'WordPressEditor/WordPressEditor/Assets/**/*'
s.xcconfig = {
'OTHER_LDFLAGS' => '-lxml2',
'HEADER_SEARCH_PATHS' => '/usr/include/libxml2'
}
s.dependency 'WordPress-Aztec-iOS', s.version.to_s
end