From b55fca588e810575ce1beeb45dc3f7ab7a4082ca Mon Sep 17 00:00:00 2001 From: "Edinaldo P. Silva" Date: Sun, 18 Sep 2016 16:53:00 +0700 Subject: audio/sayonara-player: Added (small, clear and fast audio player). Signed-off-by: Willy Sudiarto Raharjo --- audio/sayonara-player/README | 24 ++++++ audio/sayonara-player/doinst.sh | 13 +++ audio/sayonara-player/sayonara-player.SlackBuild | 102 +++++++++++++++++++++++ audio/sayonara-player/sayonara-player.info | 10 +++ audio/sayonara-player/slack-desc | 19 +++++ 5 files changed, 168 insertions(+) create mode 100644 audio/sayonara-player/README create mode 100644 audio/sayonara-player/doinst.sh create mode 100644 audio/sayonara-player/sayonara-player.SlackBuild create mode 100644 audio/sayonara-player/sayonara-player.info create mode 100644 audio/sayonara-player/slack-desc (limited to 'audio') diff --git a/audio/sayonara-player/README b/audio/sayonara-player/README new file mode 100644 index 0000000000..ad98e9e39d --- /dev/null +++ b/audio/sayonara-player/README @@ -0,0 +1,24 @@ +sayonara-player (small, clear and fast audio player for Linux) + +sayonara-player is a small, clear and fast audio player for Linux +written in C++, supported by the Qt framework. It uses Gstreamer as +audio backend. + +Although Sayonara is considered as a lightweight player, it holds a +lot of features to organize even big music collections. + +Most of them are known from the bigger and well known audio players. +But in contrast to most of the other players the main focus during +developing has been performance, low CPU usage and low memory +consumption. + +So Sayonara is a good alternative to players like Rhythmbox, +Clementine or Amarok. Those who miss Winamp for Linux should give +Sayonara a try. + +One of Sayonara's goals is intuitive and easy usablility. +Currently it is only available for Linux. + +Sayonara features: https://sayonara-player.com/features.php + +Optional dependencies: gst-plugins-ugly, lame. diff --git a/audio/sayonara-player/doinst.sh b/audio/sayonara-player/doinst.sh new file mode 100644 index 0000000000..9424ce43ff --- /dev/null +++ b/audio/sayonara-player/doinst.sh @@ -0,0 +1,13 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -x /usr/bin/update-mime-database ]; then + /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1 +fi + +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi diff --git a/audio/sayonara-player/sayonara-player.SlackBuild b/audio/sayonara-player/sayonara-player.SlackBuild new file mode 100644 index 0000000000..dd20b2cdd9 --- /dev/null +++ b/audio/sayonara-player/sayonara-player.SlackBuild @@ -0,0 +1,102 @@ +#!/bin/sh +# +# Slackware build script for sayonara-player. +# +# Copyright 2016 Edinaldo P. Silva, Rio de Janeiro, Brazil. +# 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=sayonara-player +VERSION=${VERSION:-0.9.1} +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 + +set -e + +SRCVER="git2-20160913" + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION-$SRCVER.tar.gz +mv $PRGNAM $PRGNAM-$VERSION +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 {} \; + +cmake \ + -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE="Release" \ + . +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 + +mv $PKG/usr/share/man $PKG/usr/man +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 + +DOCS="COPYING license.txt MANUAL README.txt" + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a $DOCS $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 +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/audio/sayonara-player/sayonara-player.info b/audio/sayonara-player/sayonara-player.info new file mode 100644 index 0000000000..1d9cae9c13 --- /dev/null +++ b/audio/sayonara-player/sayonara-player.info @@ -0,0 +1,10 @@ +PRGNAM="sayonara-player" +VERSION="0.9.1" +HOMEPAGE="https://sayonara-player-player.com/index.php" +DOWNLOAD="https://sayonara-player.com/sw/sayonara-player-0.9.1-git2-20160913.tar.gz" +MD5SUM="0691f63c01743806fda9327ac2e2bb9b" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="qt5 gst-plugins-bad" +MAINTAINER="Edinaldo P. Silva" +EMAIL="edps.mundognu@gmail.com" diff --git a/audio/sayonara-player/slack-desc b/audio/sayonara-player/slack-desc new file mode 100644 index 0000000000..207e42f890 --- /dev/null +++ b/audio/sayonara-player/slack-desc @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +sayonara-player: sayonara-player (small, clear and fast audio player for Linux) +sayonara-player: +sayonara-player: sayonara-player is a small, clear and fast audio player for Linux +sayonara-player: written in C++, supported by the Qt framework. It uses Gstreamer as +sayonara-player: audio backend. +sayonara-player: +sayonara-player: Home page: https://sayonara-player-player.com/index.php +sayonara-player: +sayonara-player: +sayonara-player: +sayonara-player: -- cgit v1.2.3