]> git.t-rg.ws Git - slackbuilds.git/commitdiff
ffms2: removed, because the version from SBo is no different from mine.
authorfsLeg <fsleg@t-rg.ws>
Sat, 25 Apr 2015 13:36:05 +0000 (16:36 +0300)
committerfsLeg <fsleg@t-rg.ws>
Sat, 25 Apr 2015 13:36:05 +0000 (16:36 +0300)
ffms2/README [deleted file]
ffms2/ffms2.SlackBuild [deleted file]
ffms2/ffms2.info [deleted file]
ffms2/slack-desc [deleted file]

diff --git a/ffms2/README b/ffms2/README
deleted file mode 100644 (file)
index 81c3e17..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-FFmpegSource (usually known as FFMS or FFMS2) is a cross-platform wrapper
-library around libav/FFmpeg, plus some additional components to deal with file
-formats libavformat has (or used to have) problems with.
\ No newline at end of file
diff --git a/ffms2/ffms2.SlackBuild b/ffms2/ffms2.SlackBuild
deleted file mode 100755 (executable)
index 7821e68..0000000
+++ /dev/null
@@ -1,110 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for ffms2
-
-# Copyright 2013-2014 Vladislav Borisov Moscow, Russia
-# 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=ffms2
-VERSION=${VERSION:-2.20}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-# Use parallel building if possible
-if [ -z "$NUMJOBS" ]; then
-  NUMJOBS=$(nproc)
-fi
-
-# Automatically determine the architecture we're building on:
-if [ -z "$ARCH" ]; then
-  case "$( uname -m )" in
-    i?86) ARCH=i486 ;;
-    arm*) ARCH=arm ;;
-    # Unless $ARCH is already set, use uname -m for all other archs:
-       *) ARCH=$( uname -m ) ;;
-  esac
-fi
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i486" ]; then
-  SLKCFLAGS="-O2 -march=i486 -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
-
-set -e # Exit on most errors
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$VERSION.tar.gz
-cd $PRGNAM-$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} \
-  --sysconfdir=/etc \
-  --localstatedir=/var \
-  --mandir=/usr/man \
-  --docdir=/usr/doc/$PRGNAM-$VERSION \
-  --build=$ARCH-slackware-linux \
-  --disable-static
-make -j$NUMJOBS
-make install DESTDIR=$PKG
-
-# Strip binaries and libraries
-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
-
-# Copy program documentation into the package
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -aR \
-  doc/*.{html,css} \
-  COPYING INSTALL README.md \
-  $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-# Copy the slack-desc (and a custom doinst.sh if necessary) into ./install
-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:-txz}
diff --git a/ffms2/ffms2.info b/ffms2/ffms2.info
deleted file mode 100644 (file)
index b8208f0..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="ffms2"
-VERSION="2.20"
-HOMEPAGE="https://github.com/FFMS/ffms2"
-DOWNLOAD="https://github.com/FFMS/ffms2/archive/2.20.tar.gz"
-MD5SUM="d6f2faa9e0ffed2e2d8d926592a87744"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="ffmpeg"
-MAINTAINER="Vladislav Borisov"
-EMAIL="fsleg@t-rg.ws"
diff --git a/ffms2/slack-desc b/ffms2/slack-desc
deleted file mode 100644 (file)
index d9f332d..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-     |-----handy-ruler------------------------------------------------------|
-ffms2: ffms2 (FFmpegSource library)
-ffms2:
-ffms2: FFmpegSource (usually known as FFMS or FFMS2) is a cross-platform
-ffms2: wrapper library around libav/FFmpeg, plus some additional
-ffms2: components to deal with file formats libavformat has (or used to
-ffms2: have) problems with.
-ffms2:
-ffms2: Website: https://github.com/FFMS/ffms2
-ffms2:
-ffms2:
\ No newline at end of file