diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2021-02-27 09:44:34 +0100 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-04-17 23:22:30 -0500 |
commit | 4827bda240be8e6a2afb81902bef357817fb9654 (patch) | |
tree | 887a534a00bde59692ca356f0dca31ff325d4745 /multimedia | |
parent | 5a410d5e6e5c29be5a27953b195527747dc2aba6 (diff) | |
download | slackbuilds-4827bda240be8e6a2afb81902bef357817fb9654.tar.gz |
multimedia/ffmpeg4: Removed (added to Slackware).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/ffmpeg4/README | 86 | ||||
-rw-r--r-- | multimedia/ffmpeg4/ffmpeg4.SlackBuild | 238 | ||||
-rw-r--r-- | multimedia/ffmpeg4/ffmpeg4.info | 10 | ||||
-rw-r--r-- | multimedia/ffmpeg4/slack-desc | 19 |
4 files changed, 0 insertions, 353 deletions
diff --git a/multimedia/ffmpeg4/README b/multimedia/ffmpeg4/README deleted file mode 100644 index 76b26f3a96..0000000000 --- a/multimedia/ffmpeg4/README +++ /dev/null @@ -1,86 +0,0 @@ -ffmpeg4 (Software to record, convert and stream audio and video). - -ffmpeg4 should be installable alongside ffmpeg 3.x without conflict. - -FFmpeg is a complete solution to record, convert and stream audio -and video. It includes libavcodec, the leading audio/video codec -library. - -By default it will not build the ffmpeg binaries or man-pages, in order -not to conflict with an ffmpeg 3.x package. You can change this by -using the following environment variable setting: - - BINS=yes - -It can optionally link to a number of extra libraries that are available -on SBo by setting the relevant env vars, which all default to "no": - - CHROMAPRINT=yes # requires chromaprint - CUDA=yes # requires cudatoolkit & nv-codec-headers - DECKLINK=yes # requires decklink-sdk - FREI0R=yes # requires frei0r - LADSPA=yes # requires ladspa_sdk - LIBBLURAY=yes # requires libbluray - LIBBS2B=yes # requires libbs2b - LIBCELT=yes # requires celt - LIBDC1394=yes # requires libdc1394 - LIBFDK_AAC=yes # requires libfdk-aac (non-redistributable) - LIBFLITE=yes # requires flite - LIBGME=yes # requires libgme - LIBGSM=yes # requires gsm - LIBIEC61883=yes # requires libiec61883 and libavc1394 - LIBILBC=yes # requires libilbc - LIBMODPLUG=yes # requires libmodplug - LIBMP3LAME=yes # requires lame - LIBOPENCORE=yes # requires opencore-amr - LIBOPENCV=yes # requires opencv - LIBOPUS=yes # requires opus - LIBRTMP=yes # requires rtmpdump - LIBRUBBERBAND=yes # requires rubberband - LIBSNAPPY=yes # requires snappy - LIBSPEEX=yes # requires speex - LIBTESSERACT=yes # requires tesseract - LIBTWOLAME=yes # requires twolame - LIBVIDSTAB=yes # requires vid.stab - LIBXVID=yes # requires xvidcore - LIBZMQ=yes # requires zeromq - LIBZVBI=yes # requires zvbi - -By default, ffmpeg4 is built to link with openssl. This creates a non- -redistributable binary (just like linking with libfdk-aac does). If you -want a redistributable binary you can change from linking with openssl -to linking with gnutls instead by setting: - - OPENSSL=no - GNUTLS=yes - -Both of these libraries are available in Slackware itself. - -There are a few other libraries available in Slackware that are also -linked to by default, and you can disable them by changing the default -of "yes" to "no" with the following settings: - - LIBAOM=no - LIBCACA=no - LIBCDIO=no - LIBFONTCONFIG=no - LIBFREETYPE=no - LIBFRIBIDI=no - LIBOPENJPEG=no - LIBPULSE=no - LIBSMBCLIENT=no - LIBSSH=no - LIBTHEORA=no - LIBV4L2=no - LIBVORBIS=no - LIBVPX=no - LIBWAVPACK=no - LIBWEBP=no - LIBX264=no - LIBX265=no - OPENGL=no - -To link to this version of the ffmpeg libraries, you'll need to set -the PKG_CONFIG_PATH to "/usr/lib${LIBDIRSUFFIX}/ffmpeg4/pkgconfig" -where ${LIBDIRSUFFIX} is either 64 or an empty string, depending on -your architecture. diff --git a/multimedia/ffmpeg4/ffmpeg4.SlackBuild b/multimedia/ffmpeg4/ffmpeg4.SlackBuild deleted file mode 100644 index 30f00771d1..0000000000 --- a/multimedia/ffmpeg4/ffmpeg4.SlackBuild +++ /dev/null @@ -1,238 +0,0 @@ -#!/bin/sh - -# Slackware build script for ffmpeg4 - -# Copyright 2018 Andreas Guldstrand -# All rights reserved. -# Copyright (c) 2020-2021 Christoph Willing Brisbane/Australia -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -PRGNAM=ffmpeg4 -SRCNAM=ffmpeg -VERSION=${VERSION:-4.3.2} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -enable() { - VAR="$1"; shift - DEF="$1"; shift - YES="$1"; shift - NO="$1"; shift - eval "$VAR=\${$VAR:-$DEF}" - eval "enable_$VAR=\"$NO\"" - eval "[ \"\$$VAR\" = \"yes\" ] && enable_$VAR=\"$YES\"" -} - -# set "enable_$VAR" variables - # ENV VAR DEFAULT IF YES IF NO -enable "BINS" "no" "" "--disable-programs --disable-manpages" -enable "CHROMAPRINT" "no" "--enable-chromaprint" "" -enable "CUDA" "no" "--enable-nonfree --enable-cuda-sdk --enable-libnpp" "" -enable "DECKLINK" "no" "--enable-decklink" "" -enable "FREI0R" "no" "--enable-frei0r" "" -enable "GNUTLS" "no" "--enable-gnutls" "" -enable "LADSPA" "no" "--enable-ladspa" "" -enable "LIBAOM" "yes" "--enable-libaom" "" -enable "LIBBLURAY" "no" "--enable-libbluray" "" -enable "LIBBS2B" "no" "--enable-libbs2b" "" -enable "LIBCACA" "yes" "--enable-libcaca" "" -enable "LIBCDIO" "yes" "--enable-libcdio" "" -enable "LIBCELT" "no" "--enable-libcelt" "" -enable "LIBDC1394" "no" "--enable-libdc1394" "" -enable "LIBFDK_AAC" "no" "--enable-nonfree --enable-libfdk_aac" "" -enable "LIBFLITE" "no" "--enable-libflite" "" -enable "LIBFONTCONFIG" "yes" "--enable-libfontconfig" "" -enable "LIBFREETYPE" "yes" "--enable-libfreetype" "" -enable "LIBFRIBIDI" "yes" "--enable-libfribidi" "" -enable "LIBGME" "no" "--enable-libgme" "" -enable "LIBGSM" "no" "--enable-libgsm" "" -enable "LIBIEC61883" "no" "--enable-libiec61883" "" -enable "LIBILBC" "no" "--enable-libilbc" "" -enable "LIBMODPLUG" "no" "--enable-libmodplug" "" -enable "LIBMP3LAME" "no" "--enable-libmp3lame" "" -enable "LIBOPENCORE" "no" "--enable-libopencore-amrnb --enable-libopencore-amrwb" "" -enable "LIBOPENCV" "no" "--enable-libopencv" "" -enable "LIBOPENJPEG" "yes" "--enable-libopenjpeg" "" -enable "LIBOPUS" "no" "--enable-libopus" "" -enable "LIBPULSE" "yes" "--enable-libpulse" "" -enable "LIBRTMP" "no" "--enable-librtmp" "" -enable "LIBRUBBERBAND" "no" "--enable-librubberband" "" -enable "LIBSMBCLIENT" "yes" "--enable-libsmbclient" "" -enable "LIBSNAPPY" "no" "--enable-libsnappy" "" -enable "LIBSPEEX" "no" "--enable-libspeex" "" -enable "LIBSSH" "yes" "--enable-libssh" "" -enable "LIBTESSERACT" "no" "--enable-libtesseract" "" -enable "LIBTHEORA" "yes" "--enable-libtheora" "" -enable "LIBTWOLAME" "no" "--enable-libtwolame" "" -enable "LIBV4L2" "yes" "--enable-libv4l2" "" -enable "LIBVIDSTAB" "no" "--enable-libvidstab" "" -enable "LIBVORBIS" "yes" "--enable-libvorbis" "" -enable "LIBVPX" "yes" "--enable-libvpx" "" -enable "LIBWAVPACK" "yes" "--enable-libwavpack" "" -enable "LIBWEBP" "yes" "--enable-libwebp" "" -enable "LIBX264" "yes" "--enable-libx264" "" -enable "LIBX265" "yes" "--enable-libx265" "" -enable "LIBXVID" "no" "--enable-libxvid" "" -enable "LIBZMQ" "no" "--enable-libzmq" "" -enable "LIBZVBI" "no" "--enable-libzvbi" "" -enable "OPENAL" "no" "--enable-openal" "" -enable "OPENGL" "yes" "--enable-opengl" "" -enable "OPENSSL" "yes" "--enable-nonfree --enable-openssl" "" - -[ "$DECKLINK" = "yes" ] && SLKCFLAGS="$SLKCFLAGS -I/usr/include/decklink" - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $SRCNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION.tar.bz2 -cd $SRCNAM-$VERSION -chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX}/ffmpeg4 \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION/html \ - --incdir=/usr/include/ffmpeg4 \ - --datadir=/usr/share/ffmpeg4 \ - --enable-rpath \ - --disable-podpages \ - --disable-txtpages \ - --arch=$ARCH \ - --enable-gpl \ - --enable-version3 \ - --enable-shared \ - --disable-static \ - --disable-debug \ - --enable-libass \ - $enable_BINS \ - $enable_CHROMAPRINT \ - $enable_CUDA \ - $enable_DECKLINK \ - $enable_FREI0R \ - $enable_GNUTLS \ - $enable_LADSPA \ - $enable_LIBAOM \ - $enable_LIBBLURAY \ - $enable_LIBBS2B \ - $enable_LIBCACA \ - $enable_LIBCDIO \ - $enable_LIBCELT \ - $enable_LIBDC1394 \ - $enable_LIBFDK_AAC \ - $enable_LIBFLITE \ - $enable_LIBFONTCONFIG \ - $enable_LIBFREETYPE \ - $enable_LIBFRIBIDI \ - $enable_LIBGME \ - $enable_LIBGSM \ - $enable_LIBIEC61883 \ - $enable_LIBILBC \ - $enable_LIBMODPLUG \ - $enable_LIBMP3LAME \ - $enable_LIBOPENCORE \ - $enable_LIBOPENCV \ - $enable_LIBOPENJPEG \ - $enable_LIBOPUS \ - $enable_LIBPULSE \ - $enable_LIBRTMP \ - $enable_LIBRUBBERBAND \ - $enable_LIBSMBCLIENT \ - $enable_LIBSNAPPY \ - $enable_LIBSPEEX \ - $enable_LIBSSH \ - $enable_LIBTESSERACT \ - $enable_LIBTHEORA \ - $enable_LIBTWOLAME \ - $enable_LIBV4L2 \ - $enable_LIBVIDSTAB \ - $enable_LIBVORBIS \ - $enable_LIBVPX \ - $enable_LIBWAVPACK \ - $enable_LIBWEBP \ - $enable_LIBX264 \ - $enable_LIBX265 \ - $enable_LIBXVID \ - $enable_LIBZMQ \ - $enable_LIBZVBI \ - $enable_OPENAL \ - $enable_OPENGL \ - $enable_OPENSSL - -make -make install DESTDIR=$PKG - -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 - -if [ "$BINS" = "yes" ]; then - find $PKG/usr/man -type f -exec gzip -9 {} \; - for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -fi - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - Changelog CONTRIBUTING.md COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1 COPYING.LGPLv3 \ - CREDITS INSTALL.md LICENSE.md MAINTAINERS README.md RELEASE RELEASE_NOTES VERSION \ - $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/multimedia/ffmpeg4/ffmpeg4.info b/multimedia/ffmpeg4/ffmpeg4.info deleted file mode 100644 index dad8d9f9a9..0000000000 --- a/multimedia/ffmpeg4/ffmpeg4.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="ffmpeg4" -VERSION="4.3.2" -HOMEPAGE="https://ffmpeg.org/" -DOWNLOAD="https://ffmpeg.org/releases/ffmpeg-4.3.2.tar.bz2" -MD5SUM="d84e0f81740adefa76d94ed8c3aa9006" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="aom libass libwebp x264 x265" -MAINTAINER="Christoph Willing" -EMAIL="chris.willing@linux.com" diff --git a/multimedia/ffmpeg4/slack-desc b/multimedia/ffmpeg4/slack-desc deleted file mode 100644 index 838032d34c..0000000000 --- a/multimedia/ffmpeg4/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. -# Line up the first '|' above the ':' following the base package name, and -# the '|' on the right side marks the last column you can put a character in. -# You must make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -ffmpeg4: ffmpeg4 (Software to record, convert and stream audio and video) -ffmpeg4: -ffmpeg4: ffmpeg4 should be installable alongside ffmpeg 3.x without conflict. -ffmpeg4: -ffmpeg4: FFmpeg is a complete solution to record, convert and stream audio and -ffmpeg4: video. It includes libavcodec, the leading audio/video codec library. -ffmpeg4: -ffmpeg4: Homepage: https://ffmpeg.org/ -ffmpeg4: -ffmpeg4: -ffmpeg4: |