Skip to content

Commit aabe557

Browse files
author
Mickael Laloum
committed
Add pod spec
1 parent b23d146 commit aabe557

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

CorePlot.podspec

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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

0 commit comments

Comments
 (0)