
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
24 lines
1.0 KiB
Python
24 lines
1.0 KiB
Python
# 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 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')
|