summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2021-03-20 22:11:52 +0800
committerGitHub <noreply@github.com>2021-03-20 15:11:52 +0100
commit806f02438d9039b17ae789d65587f70f1b9a7abc (patch)
tree2b2f1b4009d18245c74da2750fc61c11f233688b
parent44e70f40ce93cc0f9c85dff7c983e13978c159dc (diff)
downloadspack-806f02438d9039b17ae789d65587f70f1b9a7abc.tar.gz
spack-806f02438d9039b17ae789d65587f70f1b9a7abc.tar.bz2
spack-806f02438d9039b17ae789d65587f70f1b9a7abc.tar.xz
spack-806f02438d9039b17ae789d65587f70f1b9a7abc.zip
libao: add new package at v1.2.2 (#22135)
-rw-r--r--var/spack/repos/builtin/packages/libao/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libao/package.py b/var/spack/repos/builtin/packages/libao/package.py
new file mode 100644
index 0000000000..4d8ed4a1cc
--- /dev/null
+++ b/var/spack/repos/builtin/packages/libao/package.py
@@ -0,0 +1,23 @@
+# 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 Libao(AutotoolsPackage):
+ """A Cross-platform Audio Library."""
+
+ homepage = "https://github.com/xiph/libao/"
+ url = "https://github.com/xiph/libao/archive/1.2.2.tar.gz"
+
+ version('1.2.2', sha256='df8a6d0e238feeccb26a783e778716fb41a801536fe7b6fce068e313c0e2bf4d')
+ version('1.2.0', sha256='5ec2d15ee39f218e93a87f5cc8508aaebf5c8b544f42488dcb2b504d97392c99')
+ version('1.1.0', sha256='69edc39fa2759133edfcdee0ec47559067a1a8e7cd718db0eb3c82ca4254aa6b')
+
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+ depends_on('m4', type='build')
+ depends_on('perl')