-
Notifications
You must be signed in to change notification settings - Fork 320
/
DLCImagePickerController.podspec
34 lines (30 loc) · 1.23 KB
/
DLCImagePickerController.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
Pod::Spec.new do |s|
s.name = "DLCImagePickerController"
s.version = "0.0.1"
s.summary = "ImagePickerController with live filters, radial blur and more. Brought to you by the fine ladies and gents at Backspaces."
s.description = <<-DESC
DLCImagePickerController is a fast, beautiful and fun way to filter and capture your photos with OpenGL and your iPhone.
The majority of the praise should be directed towards BradLarson for his GPUImage library.
DESC
s.homepage = "www.backspac.es"
s.license = 'BSD'
s.author = { "Dmitri Cherniak" => "[email protected]" }
s.source = { :git => "https://github.com/gobackspaces/DLCImagePickerController.git", :tag => "0.0.1" }
s.platform = :ios, '5.0'
s.requires_arc = true
s.framework = 'AssetsLibrary'
s.subspec 'Core' do |sp|
sp.source_files = 'Classes'
sp.resources = "Images/{UI,Overlays}/*.png"
sp.dependency 'GPUImage'
end
s.subspec 'Filters' do |sp|
sp.resources = "Resources/Filters/*.acv"
end
s.subspec 'UI' do |sp|
sp.resources = "Resources/*.xib"
end
s.subspec 'FilterSamples' do |sp|
sp.resources = "Images/FilterSamples/*.jpg"
end
end