-
Notifications
You must be signed in to change notification settings - Fork 234
/
iosMath.podspec
26 lines (26 loc) · 1.11 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
24
25
26
Pod::Spec.new do |s|
s.name = "iosMath"
s.version = "0.9.5"
s.summary = "Math equation rendering for iOS and OS X"
s.description = <<-DESC
iosMath is a library for typesetting math formulas in iOS and OS X 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/MacOS applications.
DESC
s.homepage = "https://github.com/kostub/iosMath"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Kostub Deshmukh" => "[email protected]" }
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.8'
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 = {
'mathFonts' => [ 'fonts/*.otf', 'fonts/*.plist' ]
}
s.frameworks = "CoreGraphics", "QuartzCore", "CoreText"
s.ios.frameworks = "UIKit"
s.osx.frameworks = "AppKit"
s.requires_arc = true
end