forked from tophatmonocle/iosMath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iosMath.podspec
23 lines (23 loc) · 1 KB
/
iosMath.podspec
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 = "iosMath"
s.version = "0.8.0"
s.summary = "Math equation rendering for iOS."
s.description = <<-DESC
iosMath is a library for typesetting math formulas in iOS using
CoreText. It renders formulae written in latex in a UILabel equivalent
class using the same typsetting rules as latex. This enables displaying
beautifully rendered math equations in iOS applications.
DESC
s.homepage = "https://github.com/kostub/iosMath"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Kostub Deshmukh" => "[email protected]" }
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/kostub/iosMath.git", :tag => s.version.to_s }
s.source_files = 'iosMath/**/*.{h,m}'
s.private_header_files = 'iosMath/render/internal/*.h'
s.resource_bundles = {
'iosMathFonts' => [ 'fonts/*.otf', 'fonts/*.plist' ]
}
s.frameworks = "CoreGraphics", "QuartzCore", "CoreText", "UIKit"
s.requires_arc = true
end