forked from fplsv/FolioReaderKit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
FolioReaderKit.podspec
executable file
·40 lines (36 loc) · 1.43 KB
/
FolioReaderKit.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 = "FolioReaderKit"
s.version = "1.4.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/FolioReader/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/FolioReader/FolioReaderKit.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/hebertialmeida'
s.swift_version = '4.2'
s.platform = :ios, '9.0'
s.requires_arc = true
s.source_files = [
'Source/*.{h,swift}',
'Source/**/*.swift',
'Vendor/**/*.swift',
]
s.resources = [
'Source/**/*.{js,css}',
'Source/Resources/*.xcassets',
'Source/Resources/Fonts/**/*.{otf,ttf}'
]
s.public_header_files = 'Source/*.h'
s.libraries = "z"
s.dependency 'SSZipArchive', '2.1.1'
s.dependency 'MenuItemKit', '3.1.3'
s.dependency 'ZFDragableModalTransition', '0.6'
s.dependency 'AEXML', '4.3.3'
s.dependency 'FontBlaster', '4.1.0'
s.dependency 'RealmSwift', '3.17.3'
end