summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/aida/package.py
blob: 7a1c1cd294422be12bb65f79595b0fbc3ca4fa7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2021 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 import *


class Aida(Package):
    """Abstract Interfaces for Data Analysis"""

    homepage = "http://aida.freehep.org/"
    url      = "ftp://ftp.slac.stanford.edu/software/freehep/AIDA/v3.2.1/aida-3.2.1.tar.gz"

    tags = ['hep']

    version('3.2.1', sha256='c51da83e99c0985a7ef3e8bc5a60c3ae61f3ca603b61100c2438b4cdadd5bb2e')

    def install(self, spec, prefix):
        install_tree('src/cpp', prefix.include)
        install_tree('lib', prefix)