forked from github/twui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TwUI-cop.podspec
32 lines (28 loc) · 1.31 KB
/
TwUI-cop.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
32
Pod::Spec.new do |s|
s.name = "TwUI-cop"
s.version = "0.5.2"
s.summary = "Fork of TwUI - a UI framework for Mac based on Core Animation."
s.description = "TwUI is a hardware accelerated UI framework for Mac, inspired by UIKit. It enables:\n"\
"- GPU accelerated rendering backed by CoreAnimation.\n"\
"- Simple model/view/controller development familiar to iOS developers."
s.homepage = "https://github.com/Coppertino/twui"
s.author = { "Twitter, Inc." => "[email protected]",
"GitHub, Inc." => "[email protected]" }
s.license = { :type => 'Apache License, Version 2.0' }
s.source = { :git => "https://github.com/Coppertino/twui.git", :branch => "master" }
s.platform = :osx, '10.6'
s.requires_arc = true
s.frameworks = 'ApplicationServices', 'QuartzCore', 'Cocoa'
s.subspec 'Support' do |ss|
ss.source_files = 'lib/Support'
end
s.subspec 'UIKit' do |ss|
ss.source_files = 'lib/UIKit/*.{h,m}'
ss.exclude_files = '**/*{TUIAccessibilityElement,NSColor+TUIExtensions}*'
ss.dependency 'TwUI-cop/Support'
ss.subspec 'NSColorExtensions' do |sss|
sss.source_files = 'lib/UIKit/NSColor+TUIExtensions.{h,m}'
sss.requires_arc = false
end
end
end