2015-08-19 17:26:23 +02:00
|
|
|
Pod::Spec.new do |s|
|
2015-09-28 00:23:38 +01:00
|
|
|
s.name = "libxlsxwriter"
|
2016-07-05 00:31:18 +01:00
|
|
|
s.version = "0.4.0"
|
2015-12-08 23:04:30 +00:00
|
|
|
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
|
2015-09-28 00:23:38 +01:00
|
|
|
s.ios.deployment_target = "6.0"
|
|
|
|
s.osx.deployment_target = "10.8"
|
2015-08-19 17:26:23 +02:00
|
|
|
|
2015-09-28 00:23:38 +01:00
|
|
|
s.description = <<-DESC
|
|
|
|
Libxlsxwriter is a C library that can be used to write text, numbers, formulas and hyperlinks to multiple worksheets in an Excel 2007+ XLSX file.
|
2015-08-19 17:26:23 +02:00
|
|
|
|
2015-09-28 00:23:38 +01:00
|
|
|
It supports features such as:
|
2015-08-19 17:26:23 +02:00
|
|
|
|
2015-12-07 00:58:37 +00:00
|
|
|
* 100% compatible Excel XLSX files.
|
|
|
|
* Full Excel formatting.
|
|
|
|
* Merged cells.
|
|
|
|
* Defined names.
|
|
|
|
* Autofilters.
|
2016-05-23 23:09:03 +01:00
|
|
|
* Charts.
|
2016-01-03 19:32:44 +00:00
|
|
|
* Worksheet PNG/JPEG images.
|
2015-12-07 00:58:37 +00:00
|
|
|
* Memory optimisation mode for writing large files.
|
|
|
|
* Source code available on [GitHub](https://github.com/jmcnamara/libxlsxwriter).
|
2015-12-08 23:04:30 +00:00
|
|
|
* FreeBSD ref license.
|
2015-12-07 00:58:37 +00:00
|
|
|
* ANSI C.
|
2016-07-03 00:58:51 +01:00
|
|
|
* Works with GCC 4.x, GCC 5.x, Clang, Xcode, MSVC 2015, ICC, TCC, MinGW, MingGW-w64/32.
|
|
|
|
* Works on Linux, FreeBSD, OS X, iOS and Windows. Also with Mingw MSYS/MSYS2 and Cygwin.
|
|
|
|
* Compiles for 32 and 64 bit.
|
2015-12-07 00:58:37 +00:00
|
|
|
* The only dependency is on `zlib`.
|
2015-09-28 00:23:38 +01:00
|
|
|
DESC
|
2015-08-19 17:26:23 +02:00
|
|
|
|
2015-09-28 00:23:38 +01:00
|
|
|
s.homepage = "http://libxlsxwriter.github.io"
|
|
|
|
s.documentation_url = "http://libxlsxwriter.github.io"
|
|
|
|
s.license = "FreeBSD"
|
|
|
|
s.author = { "John McNamara" => "jmcnamara@cpan.org" }
|
2015-09-27 21:01:50 +01:00
|
|
|
|
2015-09-28 00:23:38 +01:00
|
|
|
s.source = { :git => "https://github.com/jmcnamara/libxlsxwriter.git", :tag => "RELEASE_" + s.version.to_s }
|
|
|
|
s.source_files = "src/**/*.c", "third_party/**/{zip.c,ioapi.c}", "include/**/*.h"
|
2015-08-19 17:26:23 +02:00
|
|
|
|
2015-09-28 00:23:38 +01:00
|
|
|
s.header_dir = "xlsxwriter"
|
|
|
|
s.header_mappings_dir = "include/xlsxwriter"
|
|
|
|
s.library = "z"
|
2015-12-07 01:19:55 +00:00
|
|
|
s.compiler_flags = "-DNOCRYPT=1", "-DNOUNCRYPT=1"
|
2016-05-30 22:02:10 +02:00
|
|
|
s.pod_target_xcconfig = { 'USER_HEADER_SEARCH_PATHS' => '${PODS_ROOT}/libxlsxwriter/include' }
|
|
|
|
s.module_map = "cocoapods/libxlsxwriter.modulemap"
|
|
|
|
s.prepare_command = <<-CMD
|
|
|
|
cp cocoapods/libxlsxwriter-umbrella.h include/xlsxwriter/libxlsxwriter-umbrella.h
|
|
|
|
CMD
|
2015-08-19 17:26:23 +02:00
|
|
|
end
|