40 lines
1.9 KiB
Python
40 lines
1.9 KiB
Python
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class Ssht(CMakePackage):
|
|
"""ssht: Spin spherical harmonic transforms.
|
|
|
|
The SSHT code provides functionality to perform fast and exact
|
|
spin spherical harmonic transforms based on the sampling theorem
|
|
on the sphere derived in our paper: A novel sampling theorem on
|
|
the sphere <http://dx.doi.org/10.1109/TSP.2011.2166394>.
|
|
"""
|
|
|
|
homepage = "https://astro-informatics.github.io/ssht/"
|
|
url = "https://github.com/astro-informatics/ssht/archive/v1.3.4.tar.gz"
|
|
git = "https://github.com/astro-informatics/ssht.git"
|
|
|
|
maintainers("eschnett")
|
|
|
|
license("GPL-3.0-only")
|
|
|
|
version("1.5.2", sha256="6ce3e48d36a4af57cab9d96f5f845f905808dac8ac8b3ec195f6b49d017a890d")
|
|
version("1.5.1", sha256="f0b6fb6a1de40354fcf4eafe09b953c96a72ba9c533a42e290802e93cd14170c")
|
|
version("1.5.0", sha256="ff42103463c973a11da84b757d2a6661679c8a60745e44f0ccf697f88593083a")
|
|
version("1.4.0", sha256="b33f1b763a240df773a1900139aad6f6b5c676bb2b64a8c1062077fd95c08769")
|
|
version("1.3.7", sha256="947c11b104734acb124171ff5115d14279b4d09bc297ac989204633919df422e")
|
|
version("1.3.6", sha256="db652e0f550229a630643bbf4bdb270def25c158be5ccdcf594a24fd8054430d")
|
|
version("1.3.5", sha256="2f71690cbd00f4969d7377e586022397bfb8efb107f7b13bf849a65e61362350")
|
|
version("1.3.4", sha256="dfcceca9a4ffe8973a45e213e8d5331dcee6a504a42601f50fdfa4fd022cce7b")
|
|
version("1.3.3", sha256="1f3b89e29d89fa79170b9979046a55c81b588d9dd563fd36f37887495b71dd28")
|
|
version("1.3.2", sha256="6cb3b6f94fb90dff45ba59da30a8ccd9667d8e319bed437f19d2287f59e35dd1")
|
|
version("1.3.0", sha256="9e2c220a70d662714ff601a121b674c8423866058279e000cbbee532d31dd3c9")
|
|
# version('1.2b1', commit='7378ce8853897cbd1b08adebf7ec088c1e40f860')
|
|
|
|
depends_on("fftw @3.0.0:")
|