multimedia/ffmpegfs: Updated for version 2.13.

Signed-off-by: bedlam <dave@slackbuilds.org>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Vijay Marcel 2023-05-13 01:45:13 +01:00 committed by Willy Sudiarto Raharjo
parent 4137a38bb2
commit 6d91fd4445
No known key found for this signature in database
GPG Key ID: 3F617144D7238786
4 changed files with 23 additions and 9 deletions

View File

@ -17,4 +17,6 @@ Example:
ffmpegs --desttype=mp4 input_dir output_dir -o allow_other,rw
Other optional dependencies include twolame x264 openh264
It is licensed under GPLv3

View File

@ -0,0 +1,12 @@
Changelog for FFmpegfs SlackBuild Script
--------------------------------------------------------------------
04/09/2022:
Added to slackbuilds.org
12/05/2023:
optional dependencies to ffmpegfs are twolame,x264 and openh264
updated to version 2.13

View File

@ -2,7 +2,7 @@
# Slackware build script for ffmpegfs
# Copyright 2022 Vijay Marcel
# Copyright 2022-2023 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=ffmpegfs
VERSION=${VERSION:-2.10}
VERSION=${VERSION:-2.13}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@ -51,13 +51,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=native -pipe -O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
@ -106,7 +106,7 @@ for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; r
mkdir -pv $PKG/usr/doc/$PRGNAM-$VERSION
mkdir -pv $PKG/usr/doc/$PRGNAM-$VERSION/html
cp -a COPYING ChangeLog HISTORY.md README.md NEWS TODO $PKG/usr/doc/$PRGNAM-$VERSION
cp -a COPYING COPYING.CC0 COPYING.DOC FEATURES.md PROBLEMS.md ChangeLog HISTORY.md README.md NEWS TODO $PKG/usr/doc/$PRGNAM-$VERSION
cp -r ffmpegfs.1.htmlhelp/* $PKG/usr/doc/$PRGNAM-$VERSION/html
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild

View File

@ -1,8 +1,8 @@
PRGNAM="ffmpegfs"
VERSION="2.10"
VERSION="2.13"
HOMEPAGE="https://nschlia.github.io/ffmpegfs/html/index.html"
DOWNLOAD="https://github.com/nschlia/ffmpegfs/releases/download/v2.10/ffmpegfs-2.10.tar.gz"
MD5SUM="9332f10ca23af57364b91955ca887020"
DOWNLOAD="https://github.com/nschlia/ffmpegfs/releases/download/v2.13/ffmpegfs-2.13.tar.gz"
MD5SUM="a296123efc5a0e0c70305b5847f88b13"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="w3m graphviz libchardet chromaprint"