Skip to content

Instantly share code, notes, and snippets.

@jk
Created July 9, 2012 09:27
Show Gist options
  • Save jk/3075328 to your computer and use it in GitHub Desktop.
Save jk/3075328 to your computer and use it in GitHub Desktop.
Fixed ZipKit.podspec
Pod::Spec.new do |s|
s.name = 'ZipKit'
s.version = '0.0.1'
s.license = { :type => 'BSD', :file => 'COPYING.TXT' }
s.summary = 'An Objective-C Zip framework for Mac OS X and iOS.'
s.homepage = 'https://bitbucket.org/kolpanic/zipkit/wiki/Home'
s.author = { 'Karl Moskowski' => '[email protected]' }
s.source = { :hg => 'https://bitbucket.org/kolpanic/zipkit', :revision => '531cd75fef32' }
s.description = "ZipKit is an Objective-C framework for reading and writing Zip archives in " \
"Mac OS X and iOS apps. It supports the standard PKZip format, files larger " \
"than 4GB in size using PKZip's zip64 extensions, optionally, resource " \
"forks in a manner compatible with Mac OS X's Archive Utility (in the Mac OS " \
"X targets only), and clean interruption so archiving can be cancelled by the " \
"invoking object (e.g., a NSOperation or NSThread)."
files = '*.{h,m}', 'MacFUSE/*.{h,m}'
s.ios.source_files = files
s.osx.source_files = files
s.clean_paths = '**/main.m'
s.library = 'z'
s.osx.framework = 'CoreServices'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment