summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/astra/package.py
blob: eadf6a20ba4f9ac0dfb23437decb64eb05b74978 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# 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 Astra(Package):
    """A Space Charge Tracking Algorithm."""

    homepage = "https://www.desy.de/~mpyflo/"

    version('2020-02-03',
            sha256='ca9ee7d3d369f9040fbd595f57f3153f712d789b66385fd2d2de88a69a774b83',
            expand=False,
            url='https://www.desy.de/~mpyflo/Astra_for_64_Bit_Linux/Astra')

    # no longer available?
    # version('2016-11-30',
    #         sha256='50738bf924724e2dd15f1d924b290ffb0f7c703e5d5ae02ffee2db554338801e',
    #         expand=False,
    #         url='https://www.desy.de/~mpyflo/Astra_for_64_Bit_Linux/Astra')

    variant('gui', default=False, description='Install plotting/gui tools')

    resource(name='generator', url='https://www.desy.de/~mpyflo/Astra_for_64_Bit_Linux/generator',
             sha256='d31cf9fcfeb90ce0e729d8af628caf4a23f7e588a3d412d5b19241e8c684e531',
             expand=False,
             placement='generator')
    resource(name='postpro', url='https://www.desy.de/~mpyflo/Astra_for_64_Bit_Linux/postpro',
             sha256='f47efb14748ce1da62bcd33c9411482bee89bcab75b28a678fc764db0c21ee8d',
             expand=False,
             when='+gui',
             placement='postpro')
    resource(name='fieldplot', url='https://www.desy.de/~mpyflo/Astra_for_64_Bit_Linux/fieldplot',
             sha256='89df1da96bfd9f165fa148b84376af558e6633ab2dda837273706143ff863c96',
             expand=False,
             when='+gui',
             placement='fieldplot')
    resource(name='lineplot', url='https://www.desy.de/~mpyflo/Astra_for_64_Bit_Linux/lineplot',
             sha256='d2d5702be9cb3d96391c6a0ca37366d580ced1f0f722fb33a6039ad7fd43b69a',
             expand=False,
             when='+gui',
             placement='lineplot')
    resource(name='pgxwin_server', url='https://www.desy.de/~mpyflo/Astra_for_64_Bit_Linux/pgxwin_server',
             sha256='d2d5702be9cb3d96391c6a0ca37366d580ced1f0f722fb33a6039ad7fd43b69a',
             expand=False,
             when='+gui',
             placement='pgxwin_server')

    depends_on('libxcb', when='+gui')
    depends_on('libx11', when='+gui')

    def install(self, spec, prefix):
        mkdir(prefix.bin)
        install('Astra', prefix.bin)
        install('generator/generator', prefix.bin)
        if spec.satisfies('+gui'):
            install('postpro/postpro', prefix.bin)
            install('fieldplot/fieldplot', prefix.bin)
            install('lineplot/lineplot', prefix.bin)
            install('pgxwin_server/pgxwin_server', prefix.bin)

        chmod = which('chmod')
        chmod('+x', join_path(prefix.bin, 'Astra'))
        chmod('+x', join_path(prefix.bin, 'generator'))
        if spec.satisfies('+gui'):
            chmod('+x', join_path(prefix.bin, 'postpro'))
            chmod('+x', join_path(prefix.bin, 'fieldplot'))
            chmod('+x', join_path(prefix.bin, 'lineplot'))
            chmod('+x', join_path(prefix.bin, 'pgxwin_server'))