diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2023-01-26 21:12:35 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2023-01-26 22:33:52 +0100 |
commit | 5b947b160d9b0dd2654c9f3bbbff9e4ad3ea715a (patch) | |
tree | 0510de3e236bec81ceae4d02fd7cde1985eac28b /source/xap/xine-lib/xine-lib.SlackBuild | |
parent | 5fd11513438c7a88c32fc72e1810ec29d1b3a11b (diff) | |
download | current-5b947b160d9b0dd2654c9f3bbbff9e4ad3ea715a.tar.gz current-5b947b160d9b0dd2654c9f3bbbff9e4ad3ea715a.tar.xz |
Thu Jan 26 21:12:35 UTC 202320230126211235
a/btrfs-progs-6.1.3-x86_64-1.txz: Upgraded.
l/pipewire-0.3.65-x86_64-1.txz: Upgraded.
n/NetworkManager-1.40.12-x86_64-1.txz: Upgraded.
xap/xine-lib-1.2.13-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/xap/xine-lib/xine-lib.SlackBuild')
-rwxr-xr-x | source/xap/xine-lib/xine-lib.SlackBuild | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/source/xap/xine-lib/xine-lib.SlackBuild b/source/xap/xine-lib/xine-lib.SlackBuild index 23f3f4425..c3189fe19 100755 --- a/source/xap/xine-lib/xine-lib.SlackBuild +++ b/source/xap/xine-lib/xine-lib.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2008, 2009, 2012, 2017, 2018, 2019, 2022 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2008, 2009, 2012, 2017, 2018, 2019, 2022, 2023 Patrick J. Volkerding, Sebeka, MN, USA # Copyright 2011, 2012 Eric Hameleers, Eindhoven, NL # Copyright 2017 Heinz Wiesinger, Amsterdam, NL # All rights reserved. @@ -26,13 +26,13 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=xine-lib # Version on the tarball -VERSION=1.2.12 +VERSION=1.2.13 # Version used in the source directory to cd into -DIRVER=1.2.12 +DIRVER=1.2.13 # Version used for the Slackware package -PKGVER=1.2.12 +PKGVER=1.2.13 -BUILD=${BUILD:-3} +BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -81,7 +81,7 @@ mkdir -p $TMP $PKG/usr cd $TMP rm -rf xine-lib-$VERSION tar xvf $CWD/xine-lib-$VERSION.tar.xz || exit 1 -cd xine-lib-$DIRVER || exit 1 +cd xine-lib-$DIRVER || cd xine-lib.$DIRVER || exit 1 chown -R root:root . find . \ @@ -90,12 +90,6 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \+ -# Fix build with ffmpeg-5.1: -zcat $CWD/020-xine-lib-ffmpeg-5.1-fix.patch.gz | patch -p1 --verbose || exit 1 -if ! grep -wq HAVE_AVUTIL_AVCODEC_H include/configure.h.in ; then - echo "#define HAVE_AVUTIL_AVCODEC_H 1" >> include/configure.h.in -fi - # Fix build with binutils 2.39: sed '/xine_set_flags/s/XINE_PROTECTED//' -i include/xine.h |