libxlsxwriter/libxlsxwriter.podspec

53 lines
2.8 KiB
Plaintext
Raw Normal View History

2015-08-19 17:26:23 +02:00
Pod::Spec.new do |s|
2015-09-28 00:23:38 +01:00
s.name = "libxlsxwriter"
2024-04-06 00:08:20 +01:00
s.version = "1.1.7"
2015-12-08 23:04:30 +00:00
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
2024-04-04 21:03:48 +01:00
s.ios.deployment_target = "12.0"
s.osx.deployment_target = "10.13"
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.
2017-09-25 00:27:24 +01:00
* Data validation and drop down lists.
* Conditional formatting.
2021-05-08 00:25:14 +01:00
* Worksheet PNG/JPEG/GIF images.
* Cell comments.
* Support for adding Macros.
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).
2016-07-14 23:32:25 +01:00
* FreeBSD license.
2015-12-07 00:58:37 +00:00
* ANSI C.
2017-01-11 00:11:30 +00:00
* Works with GCC, Clang, Xcode, MSVC 2015, ICC, TCC, MinGW, MingGW-w64/32.
2016-07-14 23:32:25 +01:00
* Works on Linux, FreeBSD, OpenBSD, OS X, iOS and Windows. Also works on MSYS/MSYS2 and Cygwin.
2016-07-03 00:58:51 +01:00
* Compiles for 32 and 64 bit.
* Compiles and works on big and little endian systems.
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 }
2021-07-23 09:11:39 +01:00
s.source_files = "src/*.c", "third_party/**/{zip.c,ioapi.c,tmpfileplus.c,md5.c}", "include/**/*.h"
s.preserve_paths = [ 'third_party/**/*.h' ]
2015-09-28 00:23:38 +01:00
s.header_dir = "xlsxwriter"
s.header_mappings_dir = "include"
2015-09-28 00:23:38 +01:00
s.library = "z"
2015-12-07 01:19:55 +00:00
s.compiler_flags = "-DNOCRYPT=1", "-DNOUNCRYPT=1"
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