-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLCNotificationBanner.podspec
More file actions
34 lines (19 loc) · 1.07 KB
/
LCNotificationBanner.podspec
File metadata and controls
34 lines (19 loc) · 1.07 KB
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 |spec|
spec.name = "LCNotificationBanner"
spec.version = "1.0.4"
spec.summary = "LCNotificationBanner is a lightweight macOS notification banner component!"
spec.description = <<-DESC
A lightweight macOS notification banner component that supports sliding in from the top, bottom, left, and right sides. It is suitable for prompt, success, and error notification scenarios of macOS App.
DESC
spec.homepage = "https://github.com/DevLiuSir/LCNotificationBanner"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Marvin" => "93428739@qq.com" }
spec.swift_versions = ['5.0']
spec.platform = :osx
spec.osx.deployment_target = "10.14"
spec.source = { :git => "https://github.com/DevLiuSir/LCNotificationBanner.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/LCNotificationBanner/**/*.{h,m,swift}"
spec.resource_bundles = {
'LCNotificationBanner' => ['Sources/LCNotificationBanner/Resources/*.bundle']
}
end