diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2024-03-05 21:16:50 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2024-03-05 23:05:14 +0100 |
commit | 367bace23da4d361a74c59d265e4f9a22635dbc5 (patch) | |
tree | c964934b933838ebedab21023feaa8c631c504a9 /source/l/opus | |
parent | 2b9bc64077432359d6c3c1cbd555e30e1e1b8ba4 (diff) | |
download | current-367bace23da4d361a74c59d265e4f9a22635dbc5.tar.gz current-367bace23da4d361a74c59d265e4f9a22635dbc5.tar.xz |
Tue Mar 5 21:16:50 UTC 202420240305211650
l/gst-plugins-bad-free-1.24.0-x86_64-1.txz: Upgraded.
l/gst-plugins-base-1.24.0-x86_64-1.txz: Upgraded.
l/gst-plugins-good-1.24.0-x86_64-1.txz: Upgraded.
l/gst-plugins-libav-1.24.0-x86_64-1.txz: Upgraded.
l/gstreamer-1.24.0-x86_64-1.txz: Upgraded.
l/libnice-0.1.22-x86_64-1.txz: Upgraded.
l/opus-1.5.1-x86_64-1.txz: Upgraded.
l/pycairo-1.26.0-x86_64-2.txz: Rebuilt.
Build with meson so that the pkgconfig file is included. Thanks to jloco.
l/sof-firmware-2023.12.1-noarch-1.txz: Upgraded.
n/postfix-3.8.6-x86_64-1.txz: Upgraded.
This is a bugfix release.
For more information, see:
https://www.postfix.org/announcements/postfix-3.8.6.html
xap/mozilla-thunderbird-115.8.1-x86_64-1.txz: Upgraded.
This release contains security fixes and improvements.
For more information, see:
https://www.mozilla.org/en-US/thunderbird/115.8.1/releasenotes/
https://www.mozilla.org/en-US/security/advisories/mfsa2024-11/
https://www.cve.org/CVERecord?id=CVE-2024-1936
(* Security fix *)
xap/x3270-4.3ga6-x86_64-1.txz: Upgraded.
xfce/xfce4-screensaver-4.18.3-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/l/opus')
-rwxr-xr-x | source/l/opus/opus.SlackBuild | 49 | ||||
-rw-r--r-- | source/l/opus/opus.url | 1 |
2 files changed, 29 insertions, 21 deletions
diff --git a/source/l/opus/opus.SlackBuild b/source/l/opus/opus.SlackBuild index 54c54d736..5a42dac8e 100755 --- a/source/l/opus/opus.SlackBuild +++ b/source/l/opus/opus.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2017, 2018 Patrick J. Volkerding, Sebeka, Minnesota, USA +# Copyright 2017, 2018, 2024 Patrick J. Volkerding, Sebeka, Minnesota, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -85,28 +85,31 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \+ -# Configure: -CFLAGS="$SLKCFLAGS" \ -./configure \ +# Configure, build, and install: +export CFLAGS="$SLKCFLAGS" +export CXXFLAGS="$SLKCFLAGS" +mkdir meson-build +cd meson-build +meson setup \ --prefix=/usr \ - --sysconfdir=/etc \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ + --libdir=lib${LIBDIRSUFFIX} \ + --libexecdir=/usr/libexec \ + --bindir=/usr/bin \ + --sbindir=/usr/sbin \ + --includedir=/usr/include \ + --datadir=/usr/share \ --mandir=/usr/man \ - --docdir=/usr/doc/${PKGNAM}-$VERSION \ - --infodir=/usr/info \ - --disable-static \ - --enable-custom-modes \ - --enable-rtcd \ - --enable-intrinsics \ - --enable-ambisonics \ - --build=$ARCH-slackware-linux || exit 1 - -# Build and install: -make $NUMJOBS || make || exit 1 -make install DESTDIR=$PKG || exit 1 - -# Don't ship .la files: -rm -f $PKG/usr/lib${LIBDIRSUFFIX}/*.la + --sysconfdir=/etc \ + --localstatedir=/var \ + --buildtype=release \ + -Dcustom-modes=true \ + -Drtcd=enabled \ + -Dintrinsics=enabled \ + -Ddocdir=/usr/doc/opus-$VERSION \ + .. || exit 1 + "${NINJA:=ninja}" $NUMJOBS || exit 1 + DESTDIR=$PKG $NINJA install || exit 1 +cd .. # Strip binaries: ( cd $PKG @@ -114,6 +117,10 @@ rm -f $PKG/usr/lib${LIBDIRSUFFIX}/*.la find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null ) +# Install man pages: +mkdir -p $PKG/usr/man/man3 +cp -a meson-build/doc/man/man3/opus*.3 $PKG/usr/man/man3 + # Add a documentation directory: mkdir -p $PKG/usr/doc/${PKGNAM}-$VERSION cp -a \ diff --git a/source/l/opus/opus.url b/source/l/opus/opus.url new file mode 100644 index 000000000..20a53ca0a --- /dev/null +++ b/source/l/opus/opus.url @@ -0,0 +1 @@ +https://downloads.xiph.org/releases/opus |