diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2024-02-18 21:03:57 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2024-02-18 22:59:53 +0100 |
commit | b21fd9a6857f25d0887df3f66ce30d4ea4d43797 (patch) | |
tree | e17dbde13c2e235dc6bfa222353a8262b98e76f0 /source | |
parent | 14a06990b9ba5106da08168cbd80cae33832501a (diff) | |
download | current-b21fd9a6857f25d0887df3f66ce30d4ea4d43797.tar.gz current-b21fd9a6857f25d0887df3f66ce30d4ea4d43797.tar.xz |
Sun Feb 18 21:03:57 UTC 202420240218210357
a/ndctl-78-x86_64-1.txz: Upgraded.
ap/mpg123-1.32.5-x86_64-1.txz: Upgraded.
l/libffi-3.4.6-x86_64-1.txz: Upgraded.
x/mesa-24.0.1-x86_64-2.txz: Rebuilt.
Added av1dec,av1enc,and vp9dec to the list of codecs to support.
Thanks to fulalas and ZhaoLin1547.
Diffstat (limited to 'source')
-rwxr-xr-x | source/a/ndctl/ndctl.SlackBuild | 1 | ||||
-rwxr-xr-x | source/x/mesa/mesa.SlackBuild | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/source/a/ndctl/ndctl.SlackBuild b/source/a/ndctl/ndctl.SlackBuild index 98631aa53..8c035e31b 100755 --- a/source/a/ndctl/ndctl.SlackBuild +++ b/source/a/ndctl/ndctl.SlackBuild @@ -104,6 +104,7 @@ meson setup \ --localstatedir=/var \ --buildtype=release \ -Dsystemd=disabled \ + -Dlibtracefs=disabled \ .. || exit 1 "${NINJA:=ninja}" $NUMJOBS || exit 1 DESTDIR=$PKG $NINJA install || exit 1 diff --git a/source/x/mesa/mesa.SlackBuild b/source/x/mesa/mesa.SlackBuild index 4c3595d51..1533f8bcc 100755 --- a/source/x/mesa/mesa.SlackBuild +++ b/source/x/mesa/mesa.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -26,10 +26,10 @@ PKGNAM=mesa VERSION=${VERSION:-$(echo $PKGNAM-[0-9]*.tar.?z | rev | cut -f 3- -d . | rev | cut -f 2- -d -)} AMBERVERS=${AMBERVERS:-21.3.9} DEMOVERS=${DEMOVERS:-8.5.0} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} BUILD_AMBER=${BUILD_AMBER:-YES} BUILD_DEMOS=${BUILD_DEMOS:-YES} -CODECS=${CODECS:-h264dec,h264enc,h265dec,h265enc,vc1dec} +CODECS=${CODECS:-h264dec,h264enc,h265dec,h265enc,vc1dec,av1dec,av1enc,vp9dec} NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "} |