multimedia/smplayer: Updated for version 17.7.0 + new maintainer.

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
Andrzej Telszewski 2017-07-18 22:00:17 +01:00 committed by Willy Sudiarto Raharjo
parent cd0eda5e85
commit 471e1f3bbf
4 changed files with 63 additions and 32 deletions

View file

@ -1,3 +1,16 @@
SMPlayer intends to be a complete front-end for MPlayer, from
basic features like playing videos, DVDs, and VCDs to more
advanced features like support for MPlayer filters and more.
SMPlayer is a free media player with built-in codecs that can play
virtually all video and audio formats. It doesn't need any external
codecs. Just install SMPlayer and you'll be able to play all formats
without the hassle to find and install codec packs.
SMPlayer is a graphical user interface (GUI) for MPlayer, which is
capable of playing almost all known video and audio formats. But apart
from providing access for the most common and useful options of MPlayer,
SMPlayer adds other interesting features like the possibility to play
Youtube videos or download subtitles.
One of the most interesting features of SMPlayer: it remembers the
settings of all files you play. So you start to watch a movie but you
have to leave... don't worry, when you open that movie again it will
be resumed at the same point you left it, and with the same settings:
audio track, subtitles, volume.

View file

@ -6,14 +6,14 @@
# customary to leave one space after the ':' except on otherwise blank lines.
|-----handy-ruler------------------------------------------------------|
smplayer: smplayer (GUI front-end to mplayer)
smplayer: smplayer (graphical user interface for MPlayer)
smplayer:
smplayer: SMPlayer intends to be a complete front-end for MPlayer, from
smplayer: basic features like playing videos, DVDs, and VCDs to more
smplayer: advanced features like support for MPlayer filters and more.
smplayer:
smplayer: Homepage: http://smplayer.sourceforge.net
smplayer: SMPlayer is a free media player with built-in codecs that can play
smplayer: virtually all video and audio formats. It doesn't need any external
smplayer: codecs. Just install SMPlayer and you'll be able to play all formats
smplayer: without the hassle to find and install codec packs.
smplayer:
smplayer: Homepage: http://www.smplayer.info/
smplayer:
smplayer:
smplayer:

View file

@ -3,6 +3,7 @@
# Slackware build script for SMPlayer
# Copyright 2011-2015 Fridrich von Stauffenberg <cancellor2@gmail.com>
# Copyright 2017 Andrzej Telszewski, Banie
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -11,28 +12,28 @@
# 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.
# 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=smplayer
VERSION=${VERSION:-16.6.0}
VERSION=${VERSION:-17.7.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
THEMES=${THEMES:-16.6.0}
THEMES=${THEMES:-17.3.0}
SKINS=${SKINS:-15.2.0}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@ -43,8 +44,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
@ -66,6 +67,11 @@ rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
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 {} \;
sed -i "/^PREFIX/s/=.*$/=\/usr/;
/^DOC_PATH/s/\/.*$/\/doc\/$PRGNAM-$VERSION/;
@ -88,6 +94,12 @@ rm -rf $PRGNAM-themes-$THEMES
tar xvf $CWD/$PRGNAM-themes-$THEMES.tar.bz2
cd $PRGNAM-themes-$THEMES
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 {} \;
make
make install PREFIX=/usr DESTDIR=$PKG
@ -99,6 +111,12 @@ rm -rf $PRGNAM-skins-$SKINS
tar xvf $CWD/$PRGNAM-skins-$SKINS.tar.bz2
cd $PRGNAM-skins-$SKINS
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 {} \;
make
make install PREFIX=/usr DESTDIR=$PKG

View file

@ -1,14 +1,14 @@
PRGNAM="smplayer"
VERSION="16.6.0"
HOMEPAGE="http://smplayer.sourceforge.net"
DOWNLOAD="http://downloads.sourceforge.net/smplayer/smplayer-16.6.0.tar.bz2 \
http://downloads.sourceforge.net/smplayer/smplayer-themes-16.6.0.tar.bz2 \
VERSION="17.7.0"
HOMEPAGE="http://www.smplayer.info/"
DOWNLOAD="http://downloads.sourceforge.net/smplayer/smplayer-17.7.0.tar.bz2 \
http://downloads.sourceforge.net/smplayer/smplayer-themes-17.3.0.tar.bz2 \
http://downloads.sourceforge.net/smplayer/smplayer-skins-15.2.0.tar.bz2"
MD5SUM="61d6fc855d13b33eccb3f5d2a1472220 \
7c2e475290e3edda69e52ec8682743dd \
MD5SUM="8f0572ecc3fb840a854bad2c2907199f \
33c063c5a80c5b1625f51ddbb7bfd3a1 \
57e165cf9a95808fafd179e5322b7f15"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
MAINTAINER="Fridrich von Stauffenberg"
EMAIL="cancellor2@gmail.com"
MAINTAINER="Andrzej Telszewski"
EMAIL="atelszewski@gmail.com"