-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
SwiftAA.podspec
36 lines (27 loc) · 1.52 KB
/
SwiftAA.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
Pod::Spec.new do |s|
s.name = "SwiftAA"
s.version = "3.0.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 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 = "https://twitter.com/onekiloparsec"
# When using multiple platforms
s.ios.deployment_target = "12.0"
s.osx.deployment_target = "10.13"
s.watchos.deployment_target = "7.0"
s.tvos.deployment_target = "12.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 'AABridge', '~> 3.0.0'
end