-
Notifications
You must be signed in to change notification settings - Fork 2
/
ContentstackUtils.podspec
31 lines (25 loc) · 1.69 KB
/
ContentstackUtils.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
Pod::Spec.new do |s|
s.name = 'ContentstackUtils'
s.version = '1.3.1'
s.summary = 'Contentstack is a headless CMS with an API-first approach that puts content at the centre.'
s.description = <<-DESC
Contentstack is a headless CMS with an API-first approach that puts content at the centre. It is designed to simplify the process of publication by separating code from content.
In a world where content is consumed via countless channels and form factors across mobile, web and IoT. Contentstack reimagines content management by decoupling code from content. Business users manage content – no training or development required. Developers can create cross-platform apps and take advantage of a headless CMS that delivers content through APIs. With an architecture that’s extensible – but without the bloat of legacy CMS – Contentstack cuts down on infrastructure, maintenance, cost and complexity.
DESC
s.homepage = 'https://www.contentstack.com/'
s.license = { :type => 'MIT',:text => 'See https://www.contentstack.com/'}
s.author = { 'Contentstack' => '[email protected]' }
s.source = { :git => 'https://github.com/contentstack/contentstack-utils-swift.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/Contentstack'
s.swift_version = '5.0'
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = "11.0"
s.watchos.deployment_target = "4.0"
s.source_files = 'Sources/**/*.{swift}'
s.framework = "Foundation"
s.xcconfig = {
'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2',
'OTHER_LDFLAGS' => '-lxml2'
}
end