-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHunspell-iOS.podspec
31 lines (27 loc) · 1.21 KB
/
Hunspell-iOS.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
#
# Be sure to run `pod lib lint Hunspell-iOS.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "Hunspell-iOS"
s.version = "1.3.3"
s.summary = "Port of Hunspell library to iOS."
s.description = <<-DESC
Hunspell is the spell checker of LibreOffice, OpenOffice.org, Mozilla Firefox 3 & Thunderbird, Google Chrome, and it is also used by proprietary software packages, like Mac OS X, InDesign, memoQ, Opera and SDL Trados.
DESC
s.homepage = "https://github.com/pichak/Hunspell-iOS"
s.license = 'GPL/LPLG/MPL'
s.author = { "Amir Sabbaghi" => "asaba90@gmail.com" }
s.source = { :git => "https://github.com/pichak/Hunspell-iOS.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/*'
s.resources = ['Pod/Dictionary/*']
s.public_header_files = "Pod/Classes/*.{h,hxx}"
s.frameworks = 'Foundation'
s.library = 'c++'
end