summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
author Heinz Wiesinger2010-06-29 05:33:45 +0200
committer Erik Hanson2010-06-29 07:36:36 +0200
commit9296dedd5aecb5fbfaa15b55f0988021e6e2bfe9 (patch)
treeab3dcbfa7b6dcfa8c8d97dd83a1d26dfe6360ad7 /desktop
parentbbecdffa3b52662f9d517f7ffdd038cad4ad6c52 (diff)
downloadslackbuilds-9296dedd5aecb5fbfaa15b55f0988021e6e2bfe9.tar.gz
desktop/ffmpegthumbnailer: Updated for version 2.0.2.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/ffmpegthumbnailer/README11
-rw-r--r--desktop/ffmpegthumbnailer/ffmpegthumbnailer.SlackBuild25
-rw-r--r--desktop/ffmpegthumbnailer/ffmpegthumbnailer.info8
3 files changed, 20 insertions, 24 deletions
diff --git a/desktop/ffmpegthumbnailer/README b/desktop/ffmpegthumbnailer/README
index 092f28362e..b3431abc35 100644
--- a/desktop/ffmpegthumbnailer/README
+++ b/desktop/ffmpegthumbnailer/README
@@ -1,7 +1,6 @@
-FFmpegthumbnailer is a lightweight video thumbnailer that can be
-used by file managers to create thumbnails for your video files.
-The thumbnailer uses ffmpeg to decode frames from the video files,
-so supported videoformats depend on the configuration flags of
-ffmpeg.
+FFmpegthumbnailer is a lightweight video thumbnailer that can be used by file
+managers to create thumbnails for your video files. The thumbnailer uses
+ffmpeg to decode frames from the video files, so supported videoformats
+depend on the configuration flags of ffmpeg.
-ffmpeg (available at SBo) is required to build FFmpegthumbnailer.
+This requires ffmpeg.
diff --git a/desktop/ffmpegthumbnailer/ffmpegthumbnailer.SlackBuild b/desktop/ffmpegthumbnailer/ffmpegthumbnailer.SlackBuild
index ec1f448c2c..1853840eee 100644
--- a/desktop/ffmpegthumbnailer/ffmpegthumbnailer.SlackBuild
+++ b/desktop/ffmpegthumbnailer/ffmpegthumbnailer.SlackBuild
@@ -23,16 +23,14 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=ffmpegthumbnailer
-VERSION=${VERSION:-1.5.6}
+VERSION=${VERSION:-2.0.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
-# 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
@@ -56,12 +54,14 @@ else
LIBDIRSUFFIX=""
fi
+set -e
+
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
-cd $TMP || exit 1
+cd $TMP
rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.?z* || exit 1
-cd $PRGNAM-$VERSION || exit 1
+tar xvf $CWD/$PRGNAM-$VERSION.tar.?z*
+cd $PRGNAM-$VERSION
chown -R root:root .
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
@@ -79,16 +79,13 @@ CXXFLAGS="$SLKCFLAGS" \
--mandir=/usr/man \
--enable-static=no \
--disable-largefile \
- --build=$ARCH-slackware-linux \
- || exit 1
+ --build=$ARCH-slackware-linux
-make || exit 1
-make install-strip DESTDIR=$PKG || exit 1
+make
+make install-strip DESTDIR=$PKG
-( cd $PKG/usr/man
- find . -type f -exec gzip -9 {} \;
- for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-)
+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
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS ChangeLog COPYING INSTALL NEWS README TODO \
diff --git a/desktop/ffmpegthumbnailer/ffmpegthumbnailer.info b/desktop/ffmpegthumbnailer/ffmpegthumbnailer.info
index 2be176c39d..1075faaa48 100644
--- a/desktop/ffmpegthumbnailer/ffmpegthumbnailer.info
+++ b/desktop/ffmpegthumbnailer/ffmpegthumbnailer.info
@@ -1,10 +1,10 @@
PRGNAM="ffmpegthumbnailer"
-VERSION="1.5.6"
+VERSION="2.0.2"
HOMEPAGE="http://code.google.com/p/ffmpegthumbnailer/"
-DOWNLOAD="http://ffmpegthumbnailer.googlecode.com/files/ffmpegthumbnailer-1.5.6.tar.gz"
-MD5SUM="24e4694b7b2d324db60b7d9484abb652"
+DOWNLOAD="http://ffmpegthumbnailer.googlecode.com/files/ffmpegthumbnailer-2.0.2.tar.gz"
+MD5SUM="ee473a26e7e8da216e64bbb33e87772c"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Frank Caraballo"
EMAIL="fecaraballo{at}gmail{dot}com"
-APPROVED="dsomero"
+APPROVED="rworkman"