mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-15 19:28:06 +01:00

new file: d/darshan/darshan-runtime-3.1.4-foss-2017a.eb new file: d/darshan/darshan-util-3.1.4-foss-2017a.eb new file: e/eudev/eudev-3.1.5-intel-2017a.eb new file: f/FFmpeg/FFmpeg-3.1.3-intel-2017a.eb new file: f/flex/flex-2.6.6.eb new file: f/fontsproto/fontsproto-2.1.3-intel-2017a.eb new file: g/glproto/glproto-1.4.17-intel-2017a.eb new file: i/ImageMagick/ImageMagick-7.0.7.27-intel-2017a.eb new file: l/libXau/libXau-1.0.8-intel-2017a.eb new file: l/libXdamage/libXdamage-1.1.4-intel-2017a.eb new file: l/libXfont/libXfont-1.5.1-intel-2017a.eb new file: m/Mesa/Mesa-13.0.0-intel-2017a.eb new file: m/Mesa/Mesa-17.2.6-intel-2017a.eb new file: m/Molden/Molden-5.7-intel-2017b.eb new file: m/mkl/mkl-2018.1.163.eb new file: n/numpy/numpy-1.14.1-mkl-Py-3.6.eb new file: p/Perl/Perl-5.26.1-foss-2017a.eb new file: v/VMD/VMD-1.9.3-intel-2017b-Py-2.7.eb new file: v/VMD/VMD-1.9.3_configure.patch new file: x/x264/x264-20160430-intel-2017a.eb deleted: n/numpy/numpy-1.14.1-Py-3.6.eb
33 lines
976 B
Plaintext
33 lines
976 B
Plaintext
# IT4Innovations 2018
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'FFmpeg'
|
|
version = '3.1.3'
|
|
|
|
homepage = 'https://www.ffmpeg.org/'
|
|
description = """A complete, cross-platform solution to record, convert and stream audio and video."""
|
|
|
|
toolchain = {'name': 'intel', 'version': '2017a'}
|
|
|
|
sources = [SOURCELOWER_TAR_BZ2]
|
|
source_urls = ['http://ffmpeg.org/releases/']
|
|
|
|
dependencies = [
|
|
('NASM', '2.12.02', '', True),
|
|
('zlib', '1.2.11', '', True),
|
|
('x264', '20160430'),
|
|
]
|
|
|
|
configopts = '--enable-pic --enable-shared --enable-gpl --enable-version3 --enable-nonfree --cc="$CC" --cxx="$CXX" '
|
|
configopts += '--enable-libx264'
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/ff%s' % x for x in ['mpeg', 'probe', 'server']] +
|
|
['lib/lib%s.%s' % (x, y) for x in ['avdevice', 'avfilter', 'avformat', 'avcodec', 'postproc',
|
|
'swresample', 'swscale', 'avutil'] for y in ['so', 'a']],
|
|
'dirs': ['include']
|
|
}
|
|
|
|
moduleclass = 'vis'
|