forked from marcuseckert/Squall
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSquall.podspec
More file actions
36 lines (30 loc) · 1.37 KB
/
Squall.podspec
File metadata and controls
36 lines (30 loc) · 1.37 KB
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
33
34
35
36
#
# Be sure to run `pod lib lint Squall.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "Squall"
s.version = "1.121"
s.summary = "Squall - After Effects to iOS."
s.ios.deployment_target = "8.0"
s.platform = :ios, '8.0'
s.description = "Squall - convert After Effects animations to iOS code and integrate them with your app."
s.homepage = "https://github.com/marcuseckert/Squall"
s.license = { :type => 'Commercial', :file => 'LICENSE' }
s.author = { "Marcus Eckert" => "hello@squall.no" }
s.source = { :git => "https://github.com/marcuseckert/Squall.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/marcus_eckert'
s.resource_bundles = {
'Squall' => ['Squall.framework/rsaCert.der', 'Squall.framework/squallLicense.pdf']
}
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/Squall"' }
s.preserve_paths = 'Squall.framework'
s.source_files = 'Squall.framework/Headers/**/*.h'
s.public_header_files = 'Squall.framework/Headers/**/*.h'
s.frameworks = 'UIKit', 'QuartzCore'
s.ios.vendored_frameworks = 'Squall.framework'
s.requires_arc = true
end