diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2021-04-21 22:47:14 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-04-21 22:47:14 -0500 |
commit | e66660692e26b2c8020e7f1b33c946c05ca51541 (patch) | |
tree | 265522aa7f359f7e0ba3838ca72e118090be6508 | |
parent | 83f0bf0031ade800d8b35b2d60e154900641bf8b (diff) |
multimedia/winff: Removed (no maintainer)
-rw-r--r-- | multimedia/winff/README | 9 | ||||
-rw-r--r-- | multimedia/winff/doinst.sh | 4 | ||||
-rw-r--r-- | multimedia/winff/presets.xml.gz | bin | 4179 -> 0 bytes | |||
-rw-r--r-- | multimedia/winff/slack-desc | 19 | ||||
-rw-r--r-- | multimedia/winff/winff.SlackBuild | 85 | ||||
-rw-r--r-- | multimedia/winff/winff.desktop | 13 | ||||
-rw-r--r-- | multimedia/winff/winff.info | 10 |
7 files changed, 0 insertions, 140 deletions
diff --git a/multimedia/winff/README b/multimedia/winff/README deleted file mode 100644 index 0c76f8ddaff3..000000000000 --- a/multimedia/winff/README +++ /dev/null @@ -1,9 +0,0 @@ -WinFF is a GUI for the command line video converter, FFMPEG. It will -convert most any video file that FFmpeg will convert. WinFF does -multiple files in multiple formats at one time. You can for example -convert mpeg's, flv's, and mov's, all into avi's all at once. - -lazarus is just a build-time dependency. - -NOTE: if you have a previous ~/.winff directory you might want to -remove it or your presets might not be updated. diff --git a/multimedia/winff/doinst.sh b/multimedia/winff/doinst.sh deleted file mode 100644 index 4e8ba7071dea..000000000000 --- a/multimedia/winff/doinst.sh +++ /dev/null @@ -1,4 +0,0 @@ -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 -fi - diff --git a/multimedia/winff/presets.xml.gz b/multimedia/winff/presets.xml.gz Binary files differdeleted file mode 100644 index 29c49e5bda89..000000000000 --- a/multimedia/winff/presets.xml.gz +++ /dev/null diff --git a/multimedia/winff/slack-desc b/multimedia/winff/slack-desc deleted file mode 100644 index 7ee2e2917b1a..000000000000 --- a/multimedia/winff/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------------------------------------------------------| -winff: winff (GUI for ffmpeg) -winff: -winff: WinFF is a GUI for the command line video converter, FFMPEG. It will -winff: convert most any video file that FFmpeg will convert. WinFF does -winff: multiple files in multiple formats at one time. You can for example -winff: convert mpeg's, flv's, and mov's, all into avi's all at once. -winff: -winff: -winff: Homepage: http://winff.org/ -winff: -winff: diff --git a/multimedia/winff/winff.SlackBuild b/multimedia/winff/winff.SlackBuild deleted file mode 100644 index fbd6015c8c85..000000000000 --- a/multimedia/winff/winff.SlackBuild +++ /dev/null @@ -1,85 +0,0 @@ -#!/bin/sh - -# Slackware build script for WinFF - -# Copyright 2010 by Giovanne Castro, Campinas, Sao Paulo, Brazil <giovannefc@ig.com.br> -# 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. - -# Modified by the SlackBuilds.org project - -PRGNAM=winff -VERSION=${VERSION:-20170714_220b212} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i386 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.xz -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 {} \; - -lazbuild --lazarusdir=/usr/share/lazarus --cpu=$ARCH -B winff.lpr - -install -m 0755 -D $PRGNAM $PKG/usr/bin/$PRGNAM - -mkdir -p $PKG/usr/share/winff -cp -a languages $PKG/usr/share/winff/ -zcat $CWD/presets.xml.gz > $PKG/usr/share/winff/presets.xml - -mkdir -p $PKG/usr/man/man1 -gzip -c9 $PRGNAM.1 > $PKG/usr/man/man1/$PRGNAM.1.gz - -install -m 0644 -D $CWD/$PRGNAM.desktop $PKG/usr/share/applications/$PRGNAM.desktop - -install -m 0644 -D winff-icons/48x48/$PRGNAM.png $PKG/usr/share/pixmaps/$PRGNAM.png - -# Copy documentation -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a docs/*.{pdf,txt} $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc -cat $CWD/doinst.sh > $PKG/install/doinst.sh - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/multimedia/winff/winff.desktop b/multimedia/winff/winff.desktop deleted file mode 100644 index ff16b3541c3c..000000000000 --- a/multimedia/winff/winff.desktop +++ /dev/null @@ -1,13 +0,0 @@ -[Desktop Entry] -Version=1.0 -Name=WinFF -Comment=GUI for FFMPEG -MimeType=application/winff; -Exec=winff -Icon=winff -Terminal=false -Type=Application -Categories=AudioVideo;AudioVideoEditing;GTK; -GenericName=Video converter -GenericName[en]=Video converter -GenericName[nl]=Video converteerder diff --git a/multimedia/winff/winff.info b/multimedia/winff/winff.info deleted file mode 100644 index 67fcb0ce49f8..000000000000 --- a/multimedia/winff/winff.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="winff" -VERSION="20170714_220b212" -HOMEPAGE="http://winff.org/" -DOWNLOAD="http://ponce.cc/slackware/sources/repo/winff-20170714_220b212.tar.xz" -MD5SUM="663cb956dd0261106383b1762d79e752" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="lazarus" -MAINTAINER="nobody" -EMAIL="nobody@nowhere.com" |