Surge/Surge.podspec

22 lines
594 B
Plaintext
Raw Normal View History

2015-01-19 00:50:43 +08:00
Pod::Spec.new do |s|
s.name = 'Surge'
2017-09-19 23:10:43 +08:00
s.version = '2.0.0'
2015-01-19 00:50:43 +08:00
s.license = 'MIT'
s.summary = 'Swift + Accelerate'
s.homepage = 'https://github.com/mattt/Surge'
s.social_media_url = 'http://twitter.com/mattt'
s.authors = { 'Mattt Thompson' => 'm@mattt.me' }
s.source = { :git => 'https://github.com/mattt/Surge.git', :tag => s.version }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '3.0'
2015-01-19 00:50:43 +08:00
2018-04-22 05:00:24 +08:00
s.source_files = 'Sources/Surge/*.swift'
2015-01-19 00:50:43 +08:00
s.frameworks = 'Accelerate'
s.requires_arc = true
end