-
Notifications
You must be signed in to change notification settings - Fork 40
/
CocoaLUT.podspec
31 lines (25 loc) · 1.03 KB
/
CocoaLUT.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Pod::Spec.new do |s|
s.name = "CocoaLUT"
s.version = begin; File.read('VERSION'); rescue; '9000.0.0'; end
s.summary = "LUTs (1D and 3D color lookup tables) for Cocoa applications."
s.homepage = "http://github.com/videovillage/CocoaLUT"
s.license = 'MIT'
s.author = { "Wil Gieseler" => "[email protected]", "Greg Cotten" => "[email protected]"}
s.source = { :git => "https://github.com/videovillage/CocoaLUT.git", :tag => s.version }
s.resource_bundle = {'TransferFunctionLUTs' => 'Assets/TransferFunctionLUTs/*.cube'}
s.requires_arc = true
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.frameworks = ['QuartzCore', 'GLKit']
s.dependency 'RegExCategories'
s.dependency 'M13OrderedDictionary'
s.dependency 'XMLDictionary'
# iOS
s.ios.frameworks = 'UIKit'
s.ios.exclude_files = 'Classes/osx'
s.ios.deployment_target = '7.0'
# OS X
s.osx.frameworks = 'AppKit'
s.osx.exclude_files = 'Classes/ios'
s.osx.deployment_target = '10.7'
end