-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMurmurHash-Swift.podspec
43 lines (27 loc) · 2.41 KB
/
MurmurHash-Swift.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
Pod::Spec.new do |spec|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.name = "MurmurHash-Swift"
spec.version = "1.1.1"
spec.summary = "MurmurHash framework in Swift."
spec.description = <<-DESC
MurmurHash framework in Swift.
A framework includes MurmurHash3's x86_32/x86_128/x64_128 functions.
DESC
spec.homepage = "https://github.com/daisuke-t-jp/MurmurHash-Swift"
spec.screenshots = "https://raw.githubusercontent.com/daisuke-t-jp/MurmurHash-Swift/master/images/header.png"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# ――― 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/MurmurHash-Swift.git", :tag => "#{spec.version}" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source_files = "Sources/MurmurHash/*.{swift}"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.swift_version = "5.3"
spec.requires_arc = true
end