Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions easybuild/easyconfigs/l/libvpx/libvpx-1.15.2-GCCcore-13.2.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
easyblock = 'ConfigureMake'

name = 'libvpx'
version = '1.15.2'

homepage = 'http://www.webmproject.org'
description = """VPx are open and royalty free video compression formats owned by Google.
"""

toolchain = {'name': 'GCCcore', 'version': '13.2.0'}
toolchainopts = {'pic': True}
Comment thread
Micket marked this conversation as resolved.

source_urls = ['https://github.com/webmproject/libvpx/archive/refs/tags']
sources = ['v%(version)s.tar.gz']
checksums = ['26fcd3db88045dee380e581862a6ef106f49b74b6396ee95c2993a260b4636aa']

builddependencies = [
('binutils', '2.40'),
('pkgconf', '2.0.3'),
('NASM', '2.16.01'),
]

configopts = '--enable-shared '
# https://github.com/Xpra-org/xpra/issues/3082
configopts += '--enable-vp9-highbitdepth'

sanity_check_paths = {
'files': ['bin/vpxdec', 'bin/vpxenc', 'include/vpx/vpx_codec.h', 'lib/libvpx.a'],
'dirs': [],
}

moduleclass = 'vis'
32 changes: 32 additions & 0 deletions easybuild/easyconfigs/l/libvpx/libvpx-1.15.2-GCCcore-13.3.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
easyblock = 'ConfigureMake'

name = 'libvpx'
version = '1.15.2'

homepage = 'http://www.webmproject.org'
description = """VPx are open and royalty free video compression formats owned by Google.
"""

toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
toolchainopts = {'pic': True}

source_urls = ['https://github.com/webmproject/libvpx/archive/refs/tags']
sources = ['v%(version)s.tar.gz']
checksums = ['26fcd3db88045dee380e581862a6ef106f49b74b6396ee95c2993a260b4636aa']

builddependencies = [
('binutils', '2.42'),
('pkgconf', '2.2.0'),
('NASM', '2.16.03'),
]

configopts = '--enable-shared '
# https://github.com/Xpra-org/xpra/issues/3082
configopts += '--enable-vp9-highbitdepth'

sanity_check_paths = {
'files': ['bin/vpxdec', 'bin/vpxenc', 'include/vpx/vpx_codec.h', 'lib/libvpx.a'],
'dirs': [],
}

moduleclass = 'vis'
32 changes: 32 additions & 0 deletions easybuild/easyconfigs/l/libvpx/libvpx-1.15.2-GCCcore-14.2.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
easyblock = 'ConfigureMake'

name = 'libvpx'
version = '1.15.2'

homepage = 'http://www.webmproject.org'
description = """VPx are open and royalty free video compression formats owned by Google.
"""

toolchain = {'name': 'GCCcore', 'version': '14.2.0'}
toolchainopts = {'pic': True}

source_urls = ['https://github.com/webmproject/libvpx/archive/refs/tags']
sources = ['v%(version)s.tar.gz']
checksums = ['26fcd3db88045dee380e581862a6ef106f49b74b6396ee95c2993a260b4636aa']

builddependencies = [
('binutils', '2.42'),
('pkgconf', '2.3.0'),
('NASM', '2.16.03'),
]

configopts = '--enable-shared '
# https://github.com/Xpra-org/xpra/issues/3082
configopts += '--enable-vp9-highbitdepth'

sanity_check_paths = {
'files': ['bin/vpxdec', 'bin/vpxenc', 'include/vpx/vpx_codec.h', 'lib/libvpx.a'],
'dirs': [],
}

moduleclass = 'vis'
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,11 @@ builddependencies = [
('NASM', '2.16.03'),
]

configopts = '--enable-pic --enable-shared '
configopts = '--enable-shared '
# https://github.com/Xpra-org/xpra/issues/3082
configopts += '--enable-vp9-highbitdepth'

sanity_check_paths = {
# 'lib/libvpx.%s' % SHLIB_EXT],
'files': ['bin/vpxdec', 'bin/vpxenc', 'include/vpx/vpx_codec.h', 'lib/libvpx.a'],
'dirs': [],
}
Expand Down