Last active
May 17, 2022 18:55
-
-
Save saiten/7524782 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Pod::Spec.new do |s| | |
s.name = 'SSZipArchive' | |
s.version = '0.3.1' | |
s.summary = 'Utility class for zipping and unzipping files on iOS and Mac.' | |
s.description = 'SSZipArchive is a simple utility class for zipping and unzipping files on iOS and Mac.' | |
s.homepage = 'https://github.com/soffes/ssziparchive' | |
s.license = { :type => 'MIT', :file => 'LICENSE' } | |
s.author = { 'Sam Soffes' => '[email protected]' } | |
s.source = { :git => 'https://github.com/soffes/ssziparchive.git', :tag => "v#{s.version}" } | |
s.ios.deployment_target = '4.0' | |
s.osx.deployment_target = '10.6' | |
s.source_files = 'SSZipArchive/SSZipArchive.{h,m}' | |
s.library = 'z' | |
s.subspec 'minizip' do |ss| | |
ss.header_dir = "minizip" | |
ss.source_files = 'minizip/*.{h,c}' | |
end | |
end |
kkyams90
commented
May 17, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment