-
Notifications
You must be signed in to change notification settings - Fork 8
/
SKAToolKit.podspec
28 lines (26 loc) · 1.28 KB
/
SKAToolKit.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
Pod::Spec.new do |s|
s.name = 'SKAToolKit'
s.version = '1.0.5'
s.license = 'MIT'
s.summary = 'SKAToolKit is a free set of tools to be used with Apple\'s Sprite Kit framework.'
s.homepage = 'http://spritekitalliance.com/'
s.social_media_url = 'https://twitter.com/SKADevs'
s.authors = {
'Norman Croan' => '[email protected]',
'Ben Kane' => '[email protected]',
'Max Kargin' => '[email protected]',
'Skyler Lauren' => '[email protected]',
'Sid Mani' => '[email protected]',
'Marc Vandehey' => '[email protected]'
}
s.source = {
:git => 'https://github.com/SpriteKitAlliance/SKAToolKit.git',
:tag => s.version.to_s
}
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.source_files = 'SKAToolKit', 'SKAToolKit/SKAButton', 'SKAToolKit/SKACroppedMiniMap', 'SKAToolKit/SKALabelNode', 'SKAToolKit/SKAMiniMap', 'SKAToolKit/SKATestingNodes', 'SKAToolKit/SKATiledMap', 'SKAToolKit/SKATiledMap/Categories', 'SKAToolKit/SKATiledMap/Utilities'
s.frameworks = 'SpriteKit', 'UIKit'
s.library = 'z'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/"' }
end