-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExcelKit.podspec
More file actions
20 lines (17 loc) · 857 Bytes
/
ExcelKit.podspec
File metadata and controls
20 lines (17 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "ExcelKit"
s.version = "0.1.0"
s.summary = "Read Microsoft Excel(TM) .xls files"
s.description = <<-DESC
Uses libxls C library as a git submodule from https://github.com/JanX2/libxls.git
DESC
s.homepage = "https://github.com/n1mda/ExcelKit"
s.license = 'MIT'
s.source = { :git => "https://github.com/n1mda/ExcelKit.git", :tag => s.version.to_s }
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*.{h,m,c}'
s.exclude_files = 'Pod/Classes/libxls/**/*.{m4,guess,in,sub,sh,am}', 'Pod/Classes/libxls/test/*', 'Pod/Classes/libxls/src/xls2csv.c'
s.header_mappings_dir = 'Pod/Classes/libxls/include'
s.libraries = 'iconv'
end