Surge/Surge.podspec

26 lines
616 B
Plaintext
Raw Permalink Normal View History

2015-01-19 00:50:43 +08:00
Pod::Spec.new do |s|
s.name = 'Surge'
2021-01-15 02:39:32 +08:00
s.version = '2.3.2'
2015-01-19 00:50:43 +08:00
s.license = 'MIT'
s.summary = 'Swift + Accelerate'
s.homepage = 'https://github.com/Jounce/Surge'
s.authors = {
'Mattt' => 'mattt@me.com',
'Vincent Esche' => 'regexident@gmail.com'
}
s.source = { git: 'https://github.com/jounce/Surge.git', tag: s.version }
2015-01-19 00:50:43 +08:00
s.ios.deployment_target = '9.0'
2015-01-19 00:50:43 +08:00
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '3.0'
s.swift_version = '5.1'
2015-01-19 00:50:43 +08:00
s.source_files = 'Sources/Surge/**/*.swift'
2015-01-19 00:50:43 +08:00
s.frameworks = 'Accelerate'
s.requires_arc = true
end