-
Notifications
You must be signed in to change notification settings - Fork 2
/
FNV.podspec
45 lines (28 loc) · 2.5 KB
/
FNV.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
Pod::Spec.new do |spec|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.name = "FNV"
spec.version = "1.1.2"
spec.summary = "FNV hash framework in Swift."
spec.description = <<-DESC
This is "FNV" (Fowler/Noll/Vo) hash framework in Swift.
A framework includes "FNV-0 32/64bit", "FNV-1 32/64bit", "FNV-1a 32/64bit" functions.
Original FNV algorithm created by Glenn Fowler, Landon Curt Noll, and Kiem-Phong Vo.
DESC
spec.homepage = "https://github.com/daisuke-t-jp/FNV"
spec.screenshots = "https://raw.githubusercontent.com/daisuke-t-jp/FNV/master/images/header.png"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.author = { "daisuke-t-jp" => "[email protected]" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.ios.deployment_target = "10.0"
spec.osx.deployment_target = "10.12"
spec.tvos.deployment_target = "12.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source = { :git => "https://github.com/daisuke-t-jp/FNV.git", :tag => "#{spec.version}" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source_files = "Sources/FNV/*.{swift}"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.swift_version = "5.3"
spec.requires_arc = true
end