forked from FolioReader/FolioReaderKit
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathFolioReaderKit.podspec
More file actions
executable file
·37 lines (34 loc) · 1.35 KB
/
FolioReaderKit.podspec
File metadata and controls
executable file
·37 lines (34 loc) · 1.35 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
25
26
27
28
29
30
31
32
33
34
35
36
37
Pod::Spec.new do |s|
s.name = "FolioReaderKit"
s.version = "2.0.0"
s.summary = "A Swift ePub reader and parser framework for iOS."
s.description = <<-DESC
Written in Swift.
The Best Open Source ePub Reader.
DESC
s.homepage = "https://github.com/drearycold/FolioReaderKit"
s.screenshots = "https://raw.githubusercontent.com/FolioReader/FolioReaderKit/assets/custom-fonts.gif", "https://raw.githubusercontent.com/FolioReader/FolioReaderKit/assets/highlight.gif"
s.license = 'BSD'
s.author = { "Heberti Almeida" => "hebertialmeida@gmail.com" }
s.source = { :git => "https://github.com/drearycold/FolioReaderKit.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/hebertialmeida'
s.swift_version = '5.3'
s.platform = :ios, '12.0'
s.requires_arc = true
s.source_files = [
'Sources/*.{h,swift}',
'Sources/**/*.swift',
'Vendor/**/*.swift',
]
s.resources = [
'Sources/**/*.{js,css}',
'Sources/FolioReaderKit/Resources/*.xcassets'
]
s.public_header_files = 'Source/*.h'
s.libraries = "z"
s.dependency 'MenuItemKit', '~> 4.0'
s.dependency 'AEXML', '~> 4.0'
s.dependency 'FontBlaster', '~> 5.0'
s.dependency 'ZIPFoundation', '~> 0.9'
s.dependency 'SwiftSoup'
end