forked from youknowone/UI7Kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUI7Kit.podspec
23 lines (22 loc) · 893 Bytes
/
UI7Kit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "UI7Kit"
s.version = "0.0.20"
s.summary = "UI7Kit is a GUI toolkit to implement iOS7 look & feel UIKit under iOS5/iOS6. It is also supported that patching UIKit to UI7Kit in runtime."
s.homepage = "https://github.com/youknowone/UI7Kit"
s.license = "2-clause BSD"
s.author = { "Jeong YunWon" => "jeong@youknowone.org" }
s.source = { :git => "https://github.com/youknowone/UI7Kit.git", :tag => "0.0.20" }
s.dependency "FoundationExtension", "~> 0.36.4"
s.dependency "KLSwitch", "~> 1.5"
s.platform = :ios, '5.0'
s.source_files = "UI7Kit"
s.public_header_files = "UI7Kit/*.h"
s.resources = "Resources/*"
s.header_dir = "UI7Kit"
s.framework = 'QuartzCore'
s.prefix_header_contents = '
#include <cdebug/debug.h>
#include <UIKitExtension/UIKitExtension.h>
#include <UI7Kit/UI7Kit.h>
'
end