-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpriteKitAutoLayout.podspec
24 lines (22 loc) · 1.1 KB
/
SpriteKitAutoLayout.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
Pod::Spec.new do |s|
s.name = "SpriteKitAutoLayout"
s.version = "0.3.1"
s.summary = "Auto Layout support for SpriteKit (iOS & OSX)"
s.description = <<-DESC
This library enables Auto Layout support for SpriteKit.
Works both for iOS and OSX.
DESC
s.homepage = "https://github.com/mgrebenets/SpriteKitAutoLayout"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Maksym Grebenets" => "mgrebenets@gmail.com" }
s.source = { :git => "https://github.com/mgrebenets/SpriteKitAutoLayout.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/mgrebenets'
# all platforms, so no s.platform here
s.requires_arc = true
s.source_files = 'Pod/Classes'
s.public_header_files = ['Pod/Classes/**/*.h']
s.private_header_files = ['Pod/Classes/**/*Internal*.h']
s.frameworks = 'SpriteKit'
#s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS[config=Debug]' => '$(inherited) SKAL_DEBUG=1' }
end