forked from dnpp73/Terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDNPPTerminal.podspec
More file actions
23 lines (21 loc) · 844 Bytes
/
DNPPTerminal.podspec
File metadata and controls
23 lines (21 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "DNPPTerminal"
s.version = "0.4.1"
s.summary = "Swift Terminal wrapper using hterm"
s.homepage = "https://github.com/bhr/Terminal"
s.license = 'Code is MIT.'
s.author = { "Benedikt" => "benedikt@hirmer.me" }
s.source = { :git => "https://github.com/bhr/Terminal.git", :tag => s.version }
s.platform = :ios, '13.0'
s.requires_arc = true
s.swift_version = '5.0'
s.source_files = 'Terminal/Sources/**/*.{h,m,swift}'
s.resources = 'Terminal/Resources/*'
s.exclude_files = 'Terminal/Example/*,Terminal/gif/*,Terminal/Terminal/*'
s.frameworks = 'UIKit'
s.module_name = 'DNPPTerminal'
s.pod_target_xcconfig = { "DEFINES_MODULE" => "YES" }
s.prepare_command = <<-CMD
sh $PWD/bin/build_hterm.sh
CMD
end