forked from cloudconvert/cloudconvert-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CloudConvert.podspec
36 lines (24 loc) · 1.23 KB
/
CloudConvert.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
36
Pod::Spec.new do |s|
s.name = "CloudConvert"
s.version = "1.1.0"
s.summary = "Convert between 200 supported file formats"
s.description = <<-DESC
CloudConvert offers a file conversion API. More than 200 different formats are supported:
* document (PDF, DOC, DOCX, ODT, RTF, TXT...)
* image (PNG, JPG, SVG, WEBP, TIF, RAW...)
* video (MP4, MKV, AVI, MPG, 3GP, FLV, WMV, OGG...)
* audio (MP3, AAC, M4A, FLAC, WMA, WAV...)
* ebook (MOBI, EPBUB, CBC, AZW...)
* archive (ZIP, RAR, 7Z, TAR.BZ2...)
* spreadsheet (XLS, XLSX, ODS, CSV...)
* presentation (PPT, PPTX, ODP...)
DESC
s.homepage = "https://cloudconvert.com"
s.license = "MIT"
s.author = { "Josias Montag" => "[email protected]", "Jason Boggess" => "[email protected]" }
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.11'
s.source = { :git => 'https://github.com/cloudconvert/cloudconvert-swift.git', :tag => s.version }
s.source_files = 'CloudConvert/*.swift'
s.dependency "Alamofire", "~> 4.4"
end