-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathNVHTarGzip.podspec
25 lines (21 loc) · 920 Bytes
/
NVHTarGzip.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
Pod::Spec.new do |s|
s.name = "NVHTarGzip"
s.version = "1.0.1"
s.summary = "A library to handle .tgz and .tar.gz files on iOS"
s.description = <<-DESC
Unpack and pack tarred and gzipped files with ease. Features:
* Low memory footprint
* NSProgress based progress reporting
* Asynchronous and synchronous and API's
DESC
s.homepage = "https://github.com/nvh/NVHTarGzip"
s.license = 'MIT'
s.author = { "Niels van Hoorn" => "[email protected]" }
s.source = { :git => "https://github.com/nvh/NVHTarGzip.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/nvh'
s.platform = :ios, '7.0'
s.ios.deployment_target = '7.0'
s.requires_arc = true
s.source_files = 'Classes/*'
s.library = 'z'
end