forked from famousj/UrsusAtom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUrsusAtom.podspec
More file actions
23 lines (19 loc) · 758 Bytes
/
Copy pathUrsusAtom.podspec
File metadata and controls
23 lines (19 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "UrsusAtom"
s.version = "1.2.4"
s.summary = "A library for manipulating Urbit atoms and auras."
s.homepage = "https://github.com/dclelland/UrsusAtom"
s.license = { type: 'MIT' }
s.author = { "Daniel Clelland" => "daniel.clelland@gmail.com" }
s.source = { git: "https://github.com/dclelland/UrsusAtom.git", tag: "1.2.4" }
s.swift_versions = ['5.1', '5.2']
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.source_files = 'Sources/UrsusAtom/**/*.swift'
s.dependency 'BigInt', '~> 5.0'
s.subspec 'PhoneticBase' do |ss|
ss.source_files = 'Sources/UrsusPhoneticBase/**/*.swift'
ss.dependency 'MurmurHash-Swift', '~> 1.0'
ss.dependency 'Parity', '~> 2.3'
end
end