-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathXCode.podspec
More file actions
30 lines (27 loc) · 971 Bytes
/
Copy pathXCode.podspec
File metadata and controls
30 lines (27 loc) · 971 Bytes
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
Pod::Spec.new do |s|
s.name = 'XCode'
s.version = '0.5.0'
s.summary = 'GNUstep Xcode project parsing and build library.'
s.description = <<-DESC
The GNUstep Xcode Library parses Xcode projects and can drive builds for
Xcode project files.
DESC
s.homepage = 'https://github.com/gnustep/libs-xcode'
s.license = { :type => 'LGPL-2.0-or-later', :text => File.read('COPYING.LIB') }
s.author = { 'GNUstep' => 'bug-gnustep@gnu.org' }
s.source = { :git => 'https://github.com/gnustep/libs-xcode.git', :tag => s.version.to_s }
s.osx.deployment_target = '10.13'
s.requires_arc = false
s.frameworks = 'Foundation'
s.source_files = 'XCode/*.{h,m}'
s.exclude_files = 'XCode/setenv.m'
s.public_header_files = 'XCode/*.h'
s.header_mappings_dir = 'XCode'
s.resource_bundles = {
'XCode' => [
'XCode/Resources/Framework-mapping.plist',
'XCode/Resources/language-codes.plist',
'XCode/Resources/create-dummy-class.sh'
]
}
end