diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-09-24 09:56:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-23 20:56:50 -0500 |
commit | 56270b229f432e99adeffb7e05c0032f633345d1 (patch) | |
tree | e7b05da0315b7a7900f47c34fbb4b6455ed5b26f /var | |
parent | 4664221576d26a54c5183d33f7c1a5e327376fbd (diff) | |
download | spack-56270b229f432e99adeffb7e05c0032f633345d1.tar.gz spack-56270b229f432e99adeffb7e05c0032f633345d1.tar.bz2 spack-56270b229f432e99adeffb7e05c0032f633345d1.tar.xz spack-56270b229f432e99adeffb7e05c0032f633345d1.zip |
Add new package: audacity (#18764)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/audacity/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/audacity/package.py b/var/spack/repos/builtin/packages/audacity/package.py new file mode 100644 index 0000000000..e4ae4dcf16 --- /dev/null +++ b/var/spack/repos/builtin/packages/audacity/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 Audacity(CMakePackage): + """Audacity is a cross-platform multitrack audio editor. It allows + you to record sounds directly or to import files in various formats. + It features a few simple effects, all of the editing features you + should need, and unlimited undo. The GUI was built with wxWidgets + and the audio I/O supports PulseAudio, OSS and ALSA under Linux.""" + + homepage = "http://audacity.sourceforge.net" + url = "https://github.com/audacity/audacity/archive/Audacity-2.4.2.tar.gz" + + version('2.4.2', sha256='cdb4800c8e9d1d4ca19964caf8d24000f80286ebd8a4db566c2622449744c099') + version('2.4.1', sha256='50240f07471373a7e5c2df65cc26eeeaaced9a0850ad1f95cb795f171ea3009f') + version('2.4.0', sha256='5d1c096d7b04ff8d5dbca3dca5b9d9f8e62093b5ea6e57ae5f821ae3132dc88f') + + depends_on('wxwidgets') |