
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
23 lines
760 B
Python
23 lines
760 B
Python
# 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))
|