-
Notifications
You must be signed in to change notification settings - Fork 12
/
Maaku.podspec
executable file
·40 lines (32 loc) · 1.27 KB
/
Maaku.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
33
34
35
36
37
38
39
40
Pod::Spec.new do |s|
s.name = "Maaku"
s.version = "0.9.2"
s.summary = "Swift cmark-gfm wrapper with a Swift friendly representation of the AST"
s.description = <<-DESC
The Maaku framework provides a Swift wrapper around cmark-gfm with the addition
of a Swift friendly representation of the AST.
DESC
s.homepage = "https://github.com/KristopherGBaker/Maaku"
s.license = "MIT"
s.author = { "Kristopher Baker" => "Kristopher Baker" }
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.11"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.swift_version = "5.0"
s.source = { :git => "https://github.com/KristopherGBaker/Maaku.git", :tag => "#{s.version}" }
s.requires_arc = true
s.default_subspec = 'Core'
s.subspec 'CMark' do |core|
core.source_files = "Sources/Maaku/CMark/**/*.swift"
core.dependency 'libcmark_gfm', '~> 0.29.3'
end
s.subspec 'Core' do |md|
md.source_files = "Sources/Maaku/Core/**/*.swift"
md.dependency 'Maaku/CMark'
end
s.subspec 'Plugins' do |plugins|
plugins.source_files = "Sources/Maaku/Plugins/**/*.swift"
plugins.dependency 'Maaku/Core'
end
end