summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/bc/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/bc/package.py')
-rw-r--r--var/spack/repos/builtin/packages/bc/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/bc/package.py b/var/spack/repos/builtin/packages/bc/package.py
new file mode 100644
index 0000000000..6f149e6fa9
--- /dev/null
+++ b/var/spack/repos/builtin/packages/bc/package.py
@@ -0,0 +1,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 Bc(AutotoolsPackage):
+ """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"
+ url = "https://ftpmirror.gnu.org/bc/bc-1.07.tar.gz"
+
+ version('1.07', 'e91638a947beadabf4d7770bdbb3d512')
+
+ depends_on('ed', type='build')
+ depends_on('texinfo', type='build')
+
+ parallel = False