summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-04-21 05:24:33 +0800
committerGitHub <noreply@github.com>2020-04-20 16:24:33 -0500
commitc2ca8328835d544440fd3b87813e2768ece58685 (patch)
treea6fa43f68ab7053f2e650a173269b7030c7d58d6 /var
parente8a7e4f5ecd0c1a6dcd9f0769f16f5ad2569dff5 (diff)
downloadspack-c2ca8328835d544440fd3b87813e2768ece58685.tar.gz
spack-c2ca8328835d544440fd3b87813e2768ece58685.tar.bz2
spack-c2ca8328835d544440fd3b87813e2768ece58685.tar.xz
spack-c2ca8328835d544440fd3b87813e2768ece58685.zip
Add new package: audacious (#16121)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/audacious/package.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/audacious/package.py b/var/spack/repos/builtin/packages/audacious/package.py
new file mode 100644
index 0000000000..0115d4c553
--- /dev/null
+++ b/var/spack/repos/builtin/packages/audacious/package.py
@@ -0,0 +1,30 @@
+# 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 Audacious(AutotoolsPackage):
+ """A lightweight and versatile audio player."""
+
+ homepage = "https://audacious-media-player.org/"
+ url = "https://github.com/audacious-media-player/audacious/archive/audacious-4.0.2.tar.gz"
+
+ version('4.0.2', sha256='92f30a78353c50f99b536061b9d94b6b9128760d546fddbf863e3591c4ac5a8d')
+ version('4.0.1', sha256='203195cf0d3c2e40d23c9895269ca0ace639c4a2b4dceb624169d75337059985')
+ version('4.0', sha256='cdfffd0eb966856980328ebb0fff9cbce57f99db9bda15e7e839d26c89e953e6')
+ version('3.10.1', sha256='c478939b4bcf6704c26eee87d48cab26547e92a83741f437711178c433373fa1')
+ version('3.10', sha256='82710d6ac90931c2cc4a0f0fcb6380ac21ed42a7a50856d16a67d3179a96e9ae')
+
+ depends_on('m4', type='build')
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+ depends_on('glib')
+ depends_on('qt')
+
+ def autoreconf(self, spec, prefix):
+ bash = which('bash')
+ bash('./autogen.sh')