-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSGPinyinSort.podspec
More file actions
43 lines (25 loc) · 921 Bytes
/
SGPinyinSort.podspec
File metadata and controls
43 lines (25 loc) · 921 Bytes
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
41
42
43
Pod::Spec.new do |s|
s.name = "SGPinyinSort"
s.version = "0.1.2"
s.summary = "Chinese pinyin sort"
s.description = <<-DESC
a simple Chinese pinyin sort tool for iOS
DESC
s.homepage = "https://github.com/install-b/SGPingyinSort"
s.license = "MIT"
s.author = { "ShangenZhang" => "645256685@qq.com" }
s.platform = :ios
s.source = { :git => "https://github.com/install-b/SGPingyinSort.git", :tag => s.version }
s.subspec 'PinyinSort' do |so|
so.framework = "Foundation"
so.source_files = "SGPinyinSort/*.{h,m}"
so.public_header_files = "SGPinyinSort/*.h"
end
s.subspec 'PinyinSearch' do |se|
se.dependency 'SGPinyinSort/PinyinSort'
se.framework = "Foundation"
se.source_files = "SGPinYinSearch/*.{h,m,txt}"
se.public_header_files = "SGPinYinSearch/*.h"
end
s.requires_arc = true
end