mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00

Explanation for this change: Previously, CocoaPods would set up the framework target such that `xlsxwriter.h` would appear in the framework's main directory, alongside the `xlsxwriter` binary. It appears that the `codesign` utility only expects binaries in that directory, though, with all headers being in the `Headers` subdirectory (otherwise it fails with an `xlsxwriter.h: code object is not signed at all` message). This change modifies the header_mappings_dir to ensure that `xlsxwriter.h` is in `Headers`, with all other headers in `Headers/xlsxwriter`, and adjusts the paths in the module map accordingly. In addition, the umbrella header is modified to include Foundation rather than UIKit, as the former is sufficient to compile the module while the latter is not available on macOS.
49 lines
2.5 KiB
Ruby
49 lines
2.5 KiB
Ruby
Pod::Spec.new do |s|
|
|
s.name = "libxlsxwriter"
|
|
s.version = "0.7.5"
|
|
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
|
|
s.ios.deployment_target = "6.0"
|
|
s.osx.deployment_target = "10.8"
|
|
|
|
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.
|
|
|
|
It supports features such as:
|
|
|
|
* 100% compatible Excel XLSX files.
|
|
* Full Excel formatting.
|
|
* Merged cells.
|
|
* Defined names.
|
|
* Autofilters.
|
|
* Charts.
|
|
* Data validation and drop down lists.
|
|
* Worksheet PNG/JPEG images.
|
|
* Memory optimisation mode for writing large files.
|
|
* Source code available on [GitHub](https://github.com/jmcnamara/libxlsxwriter).
|
|
* FreeBSD license.
|
|
* ANSI C.
|
|
* Works with GCC, Clang, Xcode, MSVC 2015, ICC, TCC, MinGW, MingGW-w64/32.
|
|
* Works on Linux, FreeBSD, OpenBSD, OS X, iOS and Windows. Also works on MSYS/MSYS2 and Cygwin.
|
|
* Compiles for 32 and 64 bit.
|
|
* The only dependency is on `zlib`.
|
|
DESC
|
|
|
|
s.homepage = "http://libxlsxwriter.github.io"
|
|
s.documentation_url = "http://libxlsxwriter.github.io"
|
|
s.license = "FreeBSD"
|
|
s.author = { "John McNamara" => "jmcnamara@cpan.org" }
|
|
|
|
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,tmpfileplus.c}", "include/**/*.h"
|
|
|
|
s.header_dir = "xlsxwriter"
|
|
s.header_mappings_dir = "include"
|
|
s.library = "z"
|
|
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
|
|
end
|