diff options
author | Vijay Marcel <vijaymarcel@outlook.com> | 2024-02-22 21:35:07 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-02-23 16:23:09 +0700 |
commit | 11cd376ef0f687f628727f47170ca0e6d4b9063c (patch) | |
tree | b4a265b061710b26deb88d523a5b0e3378a00c36 | |
parent | 55c15258a46945bf7dc08152411d8ddfe2af995f (diff) |
multimedia/AviSynthPlus: Updated for version 3.7.3.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | multimedia/AviSynthPlus/AviSynthPlus.SlackBuild | 15 | ||||
-rw-r--r-- | multimedia/AviSynthPlus/AviSynthPlus.info | 6 |
2 files changed, 9 insertions, 12 deletions
diff --git a/multimedia/AviSynthPlus/AviSynthPlus.SlackBuild b/multimedia/AviSynthPlus/AviSynthPlus.SlackBuild index 09f85d38294e..08f60252684e 100644 --- a/multimedia/AviSynthPlus/AviSynthPlus.SlackBuild +++ b/multimedia/AviSynthPlus/AviSynthPlus.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for AviSynthPlus -# Copyright 2022 Vijay Marcel +# Copyright 2022-2024 Vijay Marcel # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=AviSynthPlus -VERSION=${VERSION:-3.7.2} +VERSION=${VERSION:-3.7.3} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -38,9 +38,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -51,13 +48,13 @@ PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" + SLKCFLAGS="-march=i586 -mtune=i686 -pipe -O2 -fPIC" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" + SLKCFLAGS="-march=i686 -mtune=i686 -pipe -O2 -fPIC" LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" + SLKCFLAGS="-march=x86-64 -mtune=generic -pipe -O2 -fPIC" LIBDIRSUFFIX="64" else SLKCFLAGS="-O2" @@ -101,7 +98,7 @@ make -C $TMP/$PRGNAM-$VERSION/distrib/docs/english html rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + | cut -f 1 -d : | xargs strip --strip-unneeded --remove-section=.comment --remove-section=.note 2> /dev/null || true find $PKG -name perllocal.pod -o -name ".packlist" -o -name "*.bs" | xargs rm -f || true diff --git a/multimedia/AviSynthPlus/AviSynthPlus.info b/multimedia/AviSynthPlus/AviSynthPlus.info index a6df242ee41e..147630d0dbc1 100644 --- a/multimedia/AviSynthPlus/AviSynthPlus.info +++ b/multimedia/AviSynthPlus/AviSynthPlus.info @@ -1,8 +1,8 @@ PRGNAM="AviSynthPlus" -VERSION="3.7.2" +VERSION="3.7.3" HOMEPAGE="https://avs-plus.net" -DOWNLOAD="https://github.com/AviSynth/AviSynthPlus/archive/v3.7.2/AviSynthPlus-3.7.2.tar.gz" -MD5SUM="cac7ab4e64af4caa8c10aa14e796331f" +DOWNLOAD="https://github.com/AviSynth/AviSynthPlus/archive/v3.7.3/AviSynthPlus-3.7.3.tar.gz" +MD5SUM="e18f562c225aa04792f318a2d3039418" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="DevIL Sphinx" |