
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
23 lines
740 B
Python
23 lines
740 B
Python
# 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 Bc(AutotoolsPackage, GNUMirrorPackage):
|
|
"""bc is an arbitrary precision numeric processing language. Syntax is
|
|
similar to C, but differs in many substantial areas. It supports
|
|
interactive execution of statements."""
|
|
|
|
homepage = "https://www.gnu.org/software/bc"
|
|
gnu_mirror_path = "bc/bc-1.07.tar.gz"
|
|
|
|
version('1.07', sha256='55cf1fc33a728d7c3d386cc7b0cb556eb5bacf8e0cb5a3fcca7f109fc61205ad')
|
|
|
|
depends_on('ed', type='build')
|
|
depends_on('texinfo', type='build')
|
|
|
|
parallel = False
|