From c1e686bff0d58e65aa5409c670ceec4d99a9569c Mon Sep 17 00:00:00 2001 From: Alexander Kolov Date: Sat, 8 Jun 2013 07:31:36 +0200 Subject: [PATCH] Added libwebp dependency. Also fix a typo in description. --- SDWebImage.podspec | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SDWebImage.podspec b/SDWebImage.podspec index 7ca8e5d..bddb8aa 100644 --- a/SDWebImage.podspec +++ b/SDWebImage.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.author = { 'Olivier Poitrey' => 'rs@dailymotion.com' } s.source = { :git => 'https://github.com/rs/SDWebImage.git', :tag => '3.2' } - s.description = 'This library provides a category for UIImageVIew with support for remote ' \ + s.description = 'This library provides a category for UIImageView with support for remote ' \ 'images coming from the web. It provides an UIImageView category adding web ' \ 'image and cache management to the Cocoa Touch framework, an asynchronous ' \ 'image downloader, an asynchronous memory + disk image caching with automatic ' \ @@ -20,6 +20,8 @@ Pod::Spec.new do |s| s.source_files = 'SDWebImage/{NS,SD,UI}*.{h,m}' s.framework = 'ImageIO' + s.dependency 'libwebp' + # TODO currently CocoaPods always tries to install the subspec even if the dependency is on just 'SDWebImage' s.subspec 'MapKit' do |mk| mk.source_files = 'SDWebImage/MKAnnotationView+WebCache.*'