-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmecab.podspec
More file actions
21 lines (21 loc) · 1.04 KB
/
Copy pathmecab.podspec
File metadata and controls
21 lines (21 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |spec|
spec.name = 'mecab'
spec.version = '0.996'
spec.author = 'Taku Kudo'
spec.homepage = 'https://github.com/gumob/mecab'
spec.platform = :ios
spec.ios.deployment_target = '5.1.1'
spec.summary = 'MeCab for iOS'
spec.license = 'BSD,LGPL,GPL'
spec.source = { :git => 'https://github.com/gumob/mecab.git', :tag => '0.996' }
spec.source_files = 'mecab/mecab/Classes/*.h', 'libobjc/*'
spec.resources = [ 'ipadic/*' ]
spec.prefix_header_file = 'mecab/mecab/mecab_Prefix.pch'
spec.libraries = 'iconv', 'mecab'
spec.preserve_paths = 'libmecab.a'
spec.xcconfig = {
'HEADER_SEARCH_PATHS' => '"$(PODS_ROOT)/header/mecab"',
'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/mecab"'
}
spec.requires_arc = false
end