summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/flac/package.py
blob: 3ffa8d0f1e49437723a0e8f8a10e9ecdd07a510a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2019 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 Flac(AutotoolsPackage):
    """Encoder/decoder for the Free Lossless Audio Codec"""

    homepage = "https://xiph.org/flac/index.html"
    url      = "http://downloads.xiph.org/releases/flac/flac-1.3.2.tar.xz"

    version('1.3.2', '454f1bfa3f93cc708098d7890d0499bd')
    version('1.3.1', 'b9922c9a0378c88d3e901b234f852698')
    version('1.3.0', '13b5c214cee8373464d3d65dee362cdd')

    depends_on('libvorbis')
    depends_on('id3lib')