forked from onekiloparsec/SwiftAA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftAA.podspec
More file actions
36 lines (27 loc) · 1.53 KB
/
SwiftAA.podspec
File metadata and controls
36 lines (27 loc) · 1.53 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
35
36
Pod::Spec.new do |s|
s.name = "SwiftAA"
s.version = "2.3.0"
s.summary = "The most comprehensive and accurate collection of astronomical algorithms in Swift."
s.description = <<-DESC
SwiftAA aims to provide the most comprehensive collection of accurate astronomical algorithms in Swift.
That is, based on the reference textbook "Astronomical Algorithms" by Jean Meeus, SwiftAA provides modern
APIs about all things astronomical. It is based on the C++ layer developed since many years by J.P. Naughter.
SwiftAA is built upon this C++ layer, with an intermediate Objectice-C layer (respecting strictly the lower APIs),
on top of which modern and expressive API is crafted. It is also a lote more covered by Unit Tests, in order
to become the most reliable source of astronomical computations.
DESC
s.homepage = "https://www.onekiloparsec.dev/swiftaa"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "onekiloparsec (a.k.a. Cédric Foellmi)" => "cedric@onekiloparsec.dev" }
s.social_media_url = "http://twitter.com/onekiloparsec"
# When using multiple platforms
s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.11"
s.watchos.deployment_target = "5.0"
# s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/onekiloparsec/SwiftAA.git", :tag => "#{s.version}" }
s.framework = "Foundation"
s.swift_version = "5"
s.source_files = "Sources", "Sources/SwiftAA/*.swift"
s.dependency 'ObjCAA', '~> 2.3.0'
end