-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathHTMLPurifier.podspec
More file actions
24 lines (21 loc) · 1.16 KB
/
HTMLPurifier.podspec
File metadata and controls
24 lines (21 loc) · 1.16 KB
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 = "HTMLPurifier"
s.version = "1.1.5"
s.summary = "HTMLPurifier for Objective-C is a framework for standards-compliant HTML filtering."
s.description = "HTMLPurifier for Objective-C is a framework for standards-compliant HTML filtering. Its main purpose is sanitisation of untrusted HTML such as incoming emails or user-supplied markup."
s.homepage = "https://mynigma.org"
s.license = { :type => 'GPL with libgit2-style exception' }
s.author = { 'Edward Z. Yang' => '[email protected]',
'Roman Priebe' => '[email protected]',
'Lukas Neumann' => '[email protected]' }
s.source = { :git => 'https://github.com/Mynigma/HTMLPurifier.git', :tag => '1.1.5' }
s.social_media_url = 'https://www.facebook.com/mynigma'
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.8'
s.requires_arc = true
s.source_files = 'HTMLPurifier/**/*.{h,m}'
s.public_header_files = 'HTMLPurifier/**/*.h'
s.resource = 'Supporting Files/HTMLPurifierConfig.plist'
s.library = 'xml2'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
end