blob: 57ccbef94204359c825969927f94f59d929d5724 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# 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 Ffmpeg(AutotoolsPackage):
"""FFmpeg is a complete, cross-platform solution to record,
convert and stream audio and video."""
homepage = "https://ffmpeg.org"
url = "http://ffmpeg.org/releases/ffmpeg-4.1.1.tar.bz2"
version('4.1.1', '4a64e3cb3915a3bf71b8b60795904800')
version('4.1', 'b684fb43244a5c4caae652af9022ed5d85ce15210835bce054a33fb26033a1a5')
version('3.2.4', 'd3ebaacfa36c6e8145373785824265b4')
variant('shared', default=True,
description='build shared libraries')
variant('aom', default=False,
description='build Alliance for Open Media libraries')
depends_on('yasm@1.2.0:')
depends_on('aom', when='+aom')
def configure_args(self):
spec = self.spec
config_args = ['--enable-pic']
if '+shared' in spec:
config_args.append('--enable-shared')
if '+aom' in spec:
config_args.append('--enable-libaom')
else:
config_args.append('--disable-libaom')
return config_args
|