forked from erichoracek/Motif
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMotif.podspec
35 lines (33 loc) · 964 Bytes
/
Motif.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
33
34
35
Pod::Spec.new do |s|
s.name = 'Motif'
s.version = '0.3.2'
s.license = {
:type => 'MIT',
:file => 'LICENSE'
}
s.osx.deployment_target = '10.8'
s.ios.deployment_target = '7.0'
s.summary = 'A lightweight and customizable stylesheet framework for iOS'
s.homepage = "https://github.com/erichoracek/#{s.name}"
s.author = { 'Eric Horacek' => '[email protected]' }
s.source = {
:git => "https://github.com/erichoracek/#{s.name}.git",
:tag => s.version.to_s
}
s.frameworks = 'Foundation'
s.ios.frameworks = 'UIKit'
s.source_files = [
"#{s.name}/#{s.name}.h",
"#{s.name}/Core/*.{h,m}",
"#{s.name}/Objective-C Runtime/*.{h,m}",
"#{s.name}/YAML Serialization/*.{h,m}",
'Carthage/Checkouts/libyaml/config.h',
'Carthage/Checkouts/libyaml/**/*.{h,c}'
]
s.ios.source_files = [
"#{s.name}/iOS Support/*.{h,m}"
]
s.xcconfig = {
'OTHER_CFLAGS' => '-DHAVE_CONFIG_H -Wno-shorten-64-to-32'
}
end