Fix pod spec for iOS and OS X.

This commit is contained in:
John McNamara 2015-09-28 00:23:38 +01:00
parent 2ce256ed45
commit 12d37ce367
2 changed files with 36 additions and 31 deletions

View File

@ -1,6 +1,11 @@
/**
@page changes Changes
## 0.1.7 September 27 2015
- Fixed CocoaPod spec file for iOS and OS X.
## 0.1.6 September 27 2015
- Added CocoaPod spec file to allow the library to be installed using

View File

@ -1,39 +1,39 @@
Pod::Spec.new do |s|
s.name = "libxlsxwriter"
s.version = "0.1.6"
s.summary = "A C library for creating Excel XLSX files."
s.platform = :ios
s.platform = :osx
s.name = "libxlsxwriter"
s.version = "0.1.6"
s.summary = "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.
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:
It supports features such as:
* 100% compatible Excel XLSX files
* Full Excel formatting
* Merged cells
* Autofilters
* Defined names
* Memory optimisation mode for writing large files
* Source code available on GitHub
* FreeBSD license
* ANSI C
* Works with GCC 4.4, 4.6, 4.7, 4.8, 4.9, Clang, ICC and TCC.
* Works on Linux, FreeBSD, OS X and iOS.
* The only dependency is on zlib
DESC
* 100% compatible Excel XLSX files
* Full Excel formatting
* Merged cells
* Autofilters
* Defined names
* Memory optimisation mode for writing large files
* Source code available on GitHub
* FreeBSD license
* ANSI C
* Works with GCC 4.4, 4.6, 4.7, 4.8, 4.9, Clang, ICC and TCC.
* Works on Linux, FreeBSD, OS X and iOS.
* The only dependency is on zlib
DESC
s.homepage = "http://github.com/jmcnamara/libxlsxwriter"
s.documentation_url = "http://libxlsxwriter.github.io"
s.license = "FreeBSD"
s.author = { "John McNamara" => "jmcnamara@cpan.org" }
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_0.1.6" }
s.source_files = "src/**/*.c", "third_party/**/{zip.c,ioapi.c}", "include/**/*.h"
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"
s.header_dir = "xlsxwriter"
s.header_mappings_dir = "include/xlsxwriter"
s.library = "z"
s.compiler_flags = "-DNOCRYPT=1", "-DNOUNCRYPT=1"
s.header_dir = "xlsxwriter"
s.header_mappings_dir = "include/xlsxwriter"
s.library = "z"
s.compiler_flags = "-DNOCRYPT=1", "-DNOUNCRYPT=1"
end