-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
545333c
commit b119da5
Showing
3 changed files
with
25 additions
and
27 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,28 @@ | ||
version = `git describe --long --tags | cut -f 1 -d '-'`.chomp | ||
|
||
Pod::Spec.new do |s| | ||
s.name = "HDF5Kit" | ||
s.version = "0.2.1" | ||
s.summary = "Swift wrapper for HDF5" | ||
s.homepage = "https://github.com/aleph7/HDF5Kit" | ||
s.license = "MIT" | ||
s.author = { "Alejandro Isaza" => "al@isaza.ca" } | ||
|
||
s.osx.deployment_target = "10.10" | ||
s.ios.deployment_target = "8.0" | ||
#s.tvos.deployment_target = "9.0" | ||
s.name = 'HDF5Kit' | ||
s.version = version | ||
s.summary = 'Swift wrapper for HDF5' | ||
s.homepage = 'https://github.com/aleph7/HDF5Kit' | ||
s.license = 'MIT' | ||
s.author = { 'Alejandro Isaza' => 'al@isaza.ca' } | ||
|
||
s.osx.deployment_target = '10.10' | ||
s.ios.deployment_target = '8.0' | ||
#s.tvos.deployment_target = '9.0' | ||
s.swift_version = '4.0' | ||
|
||
s.source = { :git => "https://github.com/aleph7/HDF5Kit.git", :tag => s.version } | ||
s.source_files = "Source", "dist/src/*.{c,h}", | ||
s.exclude_files = "dist/src/H5detect.c" | ||
s.source = { git: 'https://github.com/aleph7/HDF5Kit.git', tag: version } | ||
s.source_files = 'Source', 'dist/src/*.{c,h}', | ||
s.exclude_files = 'dist/src/H5detect.c' | ||
|
||
s.public_header_files = "dist/src/*public.h", | ||
"dist/src/H5Epubgen.h", | ||
"dist/src/H5api_adpt.h", | ||
"dist/src/H5version.h", | ||
"dist/src/H5pubconf.h" | ||
s.private_header_files = "dist/src/*private.h" | ||
s.public_header_files = 'dist/src/*public.h', | ||
'dist/src/H5Epubgen.h', | ||
'dist/src/H5api_adpt.h', | ||
'dist/src/H5version.h', | ||
'dist/src/H5pubconf.h' | ||
s.private_header_files = 'dist/src/*private.h' | ||
|
||
s.library = "z" | ||
s.library = 'z' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters