diff --git a/Golden_Repo/l/libvpx/libvpx-1.11.0-GCCcore-11.2.0.eb b/Golden_Repo/l/libvpx/libvpx-1.11.0-GCCcore-11.2.0.eb index 7690e9e8a2c355d80bfd39996bc03618e99621df..1295f111648eeca3dbcc19162f66febe709bf60c 100644 --- a/Golden_Repo/l/libvpx/libvpx-1.11.0-GCCcore-11.2.0.eb +++ b/Golden_Repo/l/libvpx/libvpx-1.11.0-GCCcore-11.2.0.eb @@ -21,7 +21,10 @@ builddependencies = [ ('NASM', '2.15.05'), ] -configopts = '--enable-pic --enable-shared' + +configopts = '--enable-pic --enable-shared ' +# https://github.com/Xpra-org/xpra/issues/3082 +configopts += '--enable-vp9-highbitdepth' sanity_check_paths = { # 'lib/libvpx.%s' % SHLIB_EXT], diff --git a/Golden_Repo/l/libyuv/libyuv-20210428-GCCcore-11.2.0.eb b/Golden_Repo/l/libyuv/libyuv-20210428-GCCcore-11.2.0.eb index 173da2ccd4471061a18f5664cc6c701b83baa247..69aed046c66b1053da0ecdb5e03b29290f5bc636 100644 --- a/Golden_Repo/l/libyuv/libyuv-20210428-GCCcore-11.2.0.eb +++ b/Golden_Repo/l/libyuv/libyuv-20210428-GCCcore-11.2.0.eb @@ -18,7 +18,8 @@ sources = [ 'download_filename': 'eb6e7bb63738e29efd82ea3cf2a115238a89fa51.tar.gz', } ] -checksums = ['92f70cbd168aaaabad33f59221013e6cee8e41aa802db592b027e4e01e0bcbba'] +# checksum changes with every download +checksums = ['df3300c3c9d56b5d6b0ef02f330ca508ef4428b1b9af67083201004deb93991a'] builddependencies = [ ('binutils', '2.37'), @@ -28,14 +29,12 @@ builddependencies = [ separate_build_dir = True start_dir = './' -maxparallel = 12 - configopts = '-DCMAKE_VERBOSE_MAKEFILE=ON ' postinstallcmds = [ ( '{ cat >> %(installdir)s/libyuv.pc; } << \'EOF\'\n' - 'prefix=PREFIX_TEMPLATE\n' + 'prefix=%(installdir)s\n' 'exec_prefix=${prefix}\n' 'libdir=${prefix}/lib\n' 'includedir=${prefix}/include\n' @@ -43,7 +42,8 @@ postinstallcmds = [ 'Name: libyuv\n' 'Description: YUV conversion and scaling functionality library\n' 'Version: 0\n' - 'Libs: -lyuv\n' + 'Cflags: -I${includedir}\n' + 'Libs: -L${libdir} -lyuv\n' 'EOF' ), ]