summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-08-29 11:50:05 +0800
committerGitHub <noreply@github.com>2020-08-28 22:50:05 -0500
commit6113be091929fb45e19b189cce17e3ef4ba97bc9 (patch)
tree9d99b3b500428640be9d4c9c4934d1235b81d7d9
parent48bfffd32cb900ad03aed899c7d5c3d60ed09816 (diff)
downloadspack-6113be091929fb45e19b189cce17e3ef4ba97bc9.tar.gz
spack-6113be091929fb45e19b189cce17e3ef4ba97bc9.tar.bz2
spack-6113be091929fb45e19b189cce17e3ef4ba97bc9.tar.xz
spack-6113be091929fb45e19b189cce17e3ef4ba97bc9.zip
Add new package: faust (#18321)
-rw-r--r--var/spack/repos/builtin/packages/faust/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/faust/package.py b/var/spack/repos/builtin/packages/faust/package.py
new file mode 100644
index 0000000000..c12a8704f6
--- /dev/null
+++ b/var/spack/repos/builtin/packages/faust/package.py
@@ -0,0 +1,23 @@
+# Copyright 2013-2020 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 Faust(MakefilePackage):
+ """Faust (Functional Audio Stream) is a functional programming language
+ specifically designed for real-time signal processing and synthesis.
+ A distinctive characteristic of Faust is to be fully compiled."""
+
+ homepage = "http://faust.grame.fr/"
+ url = "https://github.com/grame-cncm/faust/archive/2.27.2.tar.gz"
+
+ version('2.27.2', sha256='3367a868a93b63582bae29ab8783f1df7a10f4084a2bc1d2258ebf3d6a8c31d7')
+ version('2.27.1', sha256='b3e93ca573025b231931e5eb92efc1a1e7f7720902aa3b285061519600a8c417')
+
+ depends_on('cmake', type='build')
+
+ def install(self, spec, prefix):
+ make('PREFIX={0}'.format(prefix), 'install')