forked from OliverLetterer/GHMarkdownParser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGHMarkdownParser.podspec
18 lines (18 loc) · 1.1 KB
/
GHMarkdownParser.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'GHMarkdownParser'
s.version = '0.1.2'
s.license = 'MIT'
s.summary = 'A GitHub Flavored Markdown parser for iOS and Mac OS, based on discount.'
s.homepage = 'https://github.com/agiletortoise/GHMarkdownParser'
s.author = { 'Oliver Letterer' => '[email protected]' }
s.source = { :git => 'https://github.com/agiletortoise/GHMarkdownParser.git', :tag => s.version.to_s, :submodules => 'true' }
s.source_files = 'discount/config.h', 'discount/setup.c', 'discount/tags.{h,c}',
'discount/html5.c', 'discount/emmatch.c', 'discount/Csio.c', 'discount/xml.c', 'discount/resource.c',
'discount/generate.c', 'discount/markdown.{h,c}', 'discount/mkdir.{c,h}', 'discount/cstring.h',
'discount/amalloc.{h,c}', 'discount/mkdio.{h,c}', 'discount/github_flavoured.c', 'discount/basename.c',
'GHMarkdownParser/**/*.{h,m}'
s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC -all_load', 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/GHMarkdownParser/discount"' }
s.public_header_files = 'GHMarkdownParser/*/.h'
s.resources = 'discount/blocktags'
s.requires_arc = true
end