forked from patr1ck/objectiveflickr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ObjectiveFlickr.podspec
80 lines (70 loc) · 2.64 KB
/
ObjectiveFlickr.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#
# Be sure to run `pod spec lint ObjectiveFlickr.podspec' to ensure this is a
# valid spec.
#
# Remove all comments before submitting the spec.
#
Pod::Spec.new do |s|
s.name = 'ObjectiveFlickr'
s.version = '2.0.0'
s.license = 'MIT'
s.summary = 'ObjectiveFlickr is a Flickr API framework designed for Mac and iPhone apps.'
s.homepage = 'https://github.com/lukhnos/objectiveflickr/'
s.author = { 'Lukhnos D. Liu' => '[email protected]' }
# Specify the location from where the source should be retreived.
#
s.source = { :git => 'https://github.com/patr1ck/objectiveflickr.git', :tag => '2.0.0' }
# If this Pod runs only on iOS or OS X, then specify that with one of
# these, or none if it runs on both platforms.
#
# s.platform = :ios
# s.platform = :osx
# A list of file patterns which select the source files that should be
# added to the Pods project. If the pattern is a directory then the
# path will automatically have '*.{h,m,mm,c,cpp}' appended.
#
# Alternatively, you can use the FileList class for even more control
# over the selected files.
# (See http://rake.rubyforge.org/classes/Rake/FileList.html.)
#
s.source_files = 'Source/**/*.{h,m}',
'LFWebAPIKit/LFHTTPRequest.h',
'LFWebAPIKit/LFHTTPRequest.m',
'LFWebAPIKit/LFSiteReachability.h',
'LFWebAPIKit/LFSiteReachability.m',
'LFWebAPIKit/LFWebAPIKit.h',
'LFWebAPIKit/NSData+LFHTTPFormExtensions.h',
'LFWebAPIKit/NSData+LFHTTPFormExtensions.m',
# A list of resources included with the Pod. These are copied into the
# target bundle with a build phase script.
#
# Also allows the use of the FileList class like `source_files does.
#
# s.resource = "icon.png"
# s.resources = "Resources/*.png"
# A list of paths to remove after installing the Pod without the
# `--no-clean' option. These can be examples, docs, and any other type
# of files that are not needed to build the Pod.
#
# *NOTE*: Never remove license and README files.
#
# Also allows the use of the FileList class like `source_files does.
#
# s.clean_path = "examples"
# s.clean_paths = "examples", "doc"
# Specify a list of frameworks that the application needs to link
# against for this Pod to work.
#
# s.framework = 'SomeFramework'
s.frameworks = 'SystemConfiguration', 'Foundation', 'CFNetwork'
# If this Pod uses ARC, specify it like so.
#
# s.requires_arc = true
# If you need to specify any other build settings, add them to the
# xcconfig hash.
#
# s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
# Finally, specify any Pods that this Pod depends on.
#
# s.dependency 'JSONKit', '~> 1.4'
end