summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/albert/package.py
blob: 1d94483f4f55f40a96697044b10e39619cd7bab9 (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-2019 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 Albert(MakefilePackage):
    """Albert is an interactive program to assist the
    specialist in the study of nonassociative algebra."""

    homepage = "https://people.cs.clemson.edu/~dpj/albertstuff/albert.html"
    url      = "https://github.com/kentavv/Albert/archive/v4.0a_opt4.tar.gz"

    version('4.0a_opt4', sha256='80b9ee774789c9cd123072523cfb693c443c3624708a58a5af177a51f36b2c79')

    depends_on('readline')

    def install(self, spec, prefix):
        mkdirp(prefix.bin)
        install('albert', join_path(prefix.bin))