Skip to content

Commit

Permalink
ZipKit: fix spec
Browse files Browse the repository at this point in the history
  • Loading branch information
pbernery committed Jul 12, 2012
1 parent 8d29cd3 commit 610c313
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions ZipKit/0.0.1/ZipKit.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'ZipKit' s.name = 'ZipKit'
s.version = '0.0.1' s.version = '0.0.1'
s.license = 'BSD' s.license = { :type => 'BSD', :file => 'COPYING.TXT' }
s.summary = 'An Objective-C Zip framework for Mac OS X and iOS.' s.summary = 'An Objective-C Zip framework for Mac OS X and iOS.'
s.homepage = 'https://bitbucket.org/kolpanic/zipkit/wiki/Home' s.homepage = 'https://bitbucket.org/kolpanic/zipkit/wiki/Home'
s.author = { 'Karl Moskowski' => 'kolpanic@voodooergonomics.com' } s.author = { 'Karl Moskowski' => 'kolpanic@voodooergonomics.com' }
Expand All @@ -16,11 +16,10 @@ Pod::Spec.new do |s|
"invoking object (e.g., a NSOperation or NSThread)." "invoking object (e.g., a NSOperation or NSThread)."


files = FileList['**/*.{h,m}'] files = FileList['**/*.{h,m}']
s.ios.source_files = files.dup.exclude(/GMAppleDouble/).exclude(/Demo Projects/) files.exclude(/Demo Projects/)
s.ios.source_files = files.dup.exclude(/GMAppleDouble/)
s.osx.source_files = files s.osx.source_files = files


s.clean_paths = 'ZipKit.{xcodeproj,lineform}', 'ZipKitFW-Info.plist', 'ZipKit_Prefix.pch', 'Demo Projects'

s.library = 'z' s.library = 'z'
s.osx.framework = 'CoreServices' s.osx.framework = 'CoreServices'
end end

0 comments on commit 610c313

Please sign in to comment.