File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ Pod ::Spec . new do |s |
2+ s . name = 'CorePlot'
3+ s . version = '1.4'
4+ s . license = 'BSD'
5+ s . summary = 'Cocoa plotting framework for Mac OS X and iOS.'
6+ s . homepage = 'https://github.com/core-plot'
7+ s . authors = { 'Drew McCormack' => 'drewmccormack@mac.com' ,
8+ 'Brad Larson' => 'larson@sunsetlakesoftware.com' ,
9+ 'Eric Skroch' => 'eskroch@mac.com' ,
10+ 'Barry Wark' => 'barrywark@gmail.com' }
11+ s . source = { :http => 'https://github.com/NyxReloaded/core-plot.git' }
12+
13+ s . description = 'Core Plot is a plotting framework for OS X and iOS. It provides 2D visualization ' \
14+ 'of data, and is tightly integrated with Apple technologies like Core Animation, ' \
15+ 'Core Data, and Cocoa Bindings.'
16+
17+ s . source_files = 'framework/Source/*.{h,m}'
18+ s . exclude_files = '**/*{TestCase,Tests}.{h,m}'
19+ s . ios . source_files = 'framework/CorePlot-CocoaTouch.h' , 'framework/iPhoneOnly/*.{h,m}'
20+ s . osx . source_files = 'framework/CorePlot.h' , 'framework/MacOnly/*.{h,m}'
21+
22+ s . framework = 'QuartzCore'
23+
24+ s . prepare_command = <<-CMD
25+ mv -v CorePlot_1.4/Source/framework .
26+ mv -v CorePlot_1.4/Source/License.txt .
27+ dtrace -h -s framework/TestResources/CorePlotProbes.d -o framework/Source/CorePlotProbes.h
28+ CMD
29+ end
You can’t perform that action at this time.
0 commit comments