-
Notifications
You must be signed in to change notification settings - Fork 0
/
BlurEffect.podspec
53 lines (42 loc) · 2.65 KB
/
BlurEffect.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
Pod::Spec.new do |s|
fmwk_name = 'BlurEffect'
fmwk_ver = '0.0.1'
repo_git_host = 'https://github.com/'
repo_author = '0xxd0'
repo_author_mail = '[email protected]'
repo_page = repo_git_host + repo_author + '/' + fmwk_name
repo_url = repo_page + '.git'
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = fmwk_name
s.version = '0.0.1'
s.summary = 'An elegant image blur in pure Swift.'
s.description = <<-DESC
An elegant image blur in pure Swift.
1. Pure Swfit.
2. High performance
DESC
s.homepage = repo_page
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = {
:type => 'MIT',
:file => 'LICENSE'
}
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { repo_author => repo_author_mail }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
src_root = 'Sources/'
src_file_path = src_root + '{*,**/*}.{swift}'
s.source = { :git => repo_url, :tag => "#{s.version}" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = src_file_path
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.frameworks = 'UIKit', 'Accelerate'
s.osx.frameworks = 'AppKit', 'Accelerate'
s.watchos.frameworks = 'UIKit', 'Accelerate'
s.tvos.frameworks = 'UIKit', 'Accelerate'
end