Created
December 31, 2012 22:21
-
-
Save dbainbridge/4423314 to your computer and use it in GitHub Desktop.
CocoaPod spec for "latest" revision of CorePlot.
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
Pod::Spec.new do |s| | |
s.name = 'CorePlot' | |
s.version = '1.1' | |
s.license = 'BSD' | |
s.summary = 'Cocoa plotting framework for Mac OS X and iOS.' | |
s.homepage = 'http://code.google.com/p/core-plot/' | |
s.authors = { 'Drew McCormack' => '[email protected]', | |
'Brad Larson' => '[email protected]', | |
'Eric Skroch' => '[email protected]', | |
'Barry Wark' => '[email protected]' } | |
s.source = { :hg => 'http://code.google.com/p/core-plot', :commit => '6dba898d8147' } | |
s.description = 'Core Plot is a plotting framework for OS X and iOS. It provides 2D visualization ' \ | |
'of data, and is tightly integrated with Apple technologies like Core Animation, ' \ | |
'Core Data, and Cocoa Bindings.' | |
files = FileList['framework/TestResources/CorePlotProbes.d', 'framework/Source/*.{h,m}'] | |
files.exclude(/(TestCase|Tests)\.[hm]/) | |
s.ios.source_files = files.dup.include('framework/CorePlot-CocoaTouch.h', 'framework/iPhoneOnly/*.{h,m}') | |
s.osx.source_files = files.dup.include('framework/CorePlot.h', 'framework/MacOnly/*.{h,m}') | |
s.framework = 'QuartzCore' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment