Skip to content

Commit

Permalink
Update podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandro-isaza committed Nov 26, 2018
1 parent 545333c commit b119da5
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 27 deletions.
1 change: 0 additions & 1 deletion .swift-version

This file was deleted.

43 changes: 23 additions & 20 deletions HDF5Kit.podspec
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
8 changes: 2 additions & 6 deletions HDF5Kit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3083,7 +3083,7 @@
SDKROOT = macosx;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_SWIFT3_OBJC_INFERENCE = Off;
SWIFT_VERSION = 4.0;
SWIFT_VERSION = 4.2;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
Expand Down Expand Up @@ -3135,7 +3135,7 @@
SDKROOT = macosx;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_SWIFT3_OBJC_INFERENCE = Off;
SWIFT_VERSION = 4.0;
SWIFT_VERSION = 4.2;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
Expand All @@ -3159,7 +3159,6 @@
PRODUCT_NAME = HDF5Kit;
SKIP_INSTALL = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 4.2;
};
name = Debug;
};
Expand All @@ -3180,7 +3179,6 @@
PRODUCT_BUNDLE_IDENTIFIER = com.venturemedia.HDF5Kit;
PRODUCT_NAME = HDF5Kit;
SKIP_INSTALL = YES;
SWIFT_VERSION = 4.2;
};
name = Release;
};
Expand All @@ -3193,7 +3191,6 @@
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.venturemedia.HDF5KitTests;
PRODUCT_NAME = HDF5KitTests;
SWIFT_VERSION = 4.2;
};
name = Debug;
};
Expand All @@ -3206,7 +3203,6 @@
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.venturemedia.HDF5KitTests;
PRODUCT_NAME = HDF5KitTests;
SWIFT_VERSION = 4.2;
};
name = Release;
};
Expand Down

0 comments on commit b119da5

Please sign in to comment.