소스 검색

[Add] SwiftBase32 (0.9.0)

xcbosa mbp16 2 년 전
부모
커밋
f88c1f25ed
1개의 변경된 파일16개의 추가작업 그리고 0개의 파일을 삭제
  1. 16 0
      SwiftBase32/0.9.0/SwiftBase32.podspec

+ 16 - 0
SwiftBase32/0.9.0/SwiftBase32.podspec

@@ -0,0 +1,16 @@
+Pod::Spec.new do |s|
+  s.name                      = 'SwiftBase32'
+  s.version                   = '0.9.0'
+  s.summary                   = 'Base32 implementation for Swift.'
+  s.homepage                  = 'https://git.forgetive.org/XCAppCollection/SwiftBase32'
+  s.source                    = { :git => s.homepage + '.git', :tag => s.version }
+  s.license                   = { :type => 'MIT', :file => 'LICENSE' }
+  s.author                    = { 'Norio Nomura' => 'norio.nomura@gmail.com' }
+  s.source_files              = 'Sources/**/*.{h,c,swift}'
+  s.pod_target_xcconfig       = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
+  s.ios.deployment_target     = '9.0'
+  s.osx.deployment_target     = '10.9'
+  s.tvos.deployment_target    = '9.0'
+  s.watchos.deployment_target = '2.0'
+  s.swift_versions            = ['4.2', '5.0', '5.1']
+end