forked from shaojiankui/JKCategories
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JKCategories.podspec
21 lines (20 loc) · 1.09 KB
/
JKCategories.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
version = "1.4";
Pod::Spec.new do |s|
s.name = "JKCategories"
s.version = version
s.summary = "JKCategories(iOS Categories), a collection of useful Objective-C Categories extending iOS Frameworks"
s.description = <<-DESC
JKCategories(iOS0Categories), a collection of useful Objective-C Categories extending iOS Frameworks such as Foundation,UIKit,CoreData,QuartzCore,CoreLocation,MapKit Etc.
DESC
s.homepage = "https://github.com/shaojiankui/JKCategories"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "skyfox" => "[email protected]" }
s.platform = :ios, "6.0"
s.ios.deployment_target = "6.0"
s.requires_arc = true
s.frameworks = 'Foundation', 'UIKit', 'CoreData', 'QuartzCore', 'CoreLocation', 'MapKit'
s.libraries = "z"
s.source = { :git => "https://github.com/shaojiankui/JKCategories.git", :tag => "#{version}" }
s.source_files = "JKCategories", "JKCategories/*.{h}","JKCategories/**/*.{h,m}"
#s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
end