summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/astra/package.py
blob: 267fedddf6a277ff1202694ca9660c8d71cc8ee6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2018 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 = "http://www.desy.de/~mpyflo/"

    version('2016-11-30', '17135b7a4adbacc1843a50a6a2ae2c25', expand=False,
            url='http://www.desy.de/~mpyflo/Astra_for_64_Bit_Linux/Astra')

    def install(self, spec, prefix):
        mkdir(prefix.bin)
        install('Astra', prefix.bin)

        chmod = which('chmod')
        chmod('+x', join_path(prefix.bin, 'Astra'))