summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libnova/package.py
blob: b788d1d1897e929a5835b4e4cb656d8657556919 (plain) (blame)
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
# Copyright 2013-2023 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 Libnova(AutotoolsPackage):
    """ "libnova is a general purpose, double precision, Celestial Mechanics,
    Astrometry and Astrodynamics library."""

    homepage = "http://libnova.sourceforge.net"
    url = "https://sourceforge.net/projects/libnova/files/libnova/v%200.15.0/libnova-0.15.0.tar.gz/download"

    license("LGPL-2.0-only")

    version("0.15.0", sha256="7c5aa33e45a3e7118d77df05af7341e61784284f1e8d0d965307f1663f415bb1")

    depends_on("m4")
    depends_on("autoconf")
    depends_on("automake")
    depends_on("libtool")

    force_autoreconf = True