From d02624baec0593dd8b951e76b6fe301afb46f761 Mon Sep 17 00:00:00 2001 From: "Edinaldo P. Silva" Date: Sat, 25 Apr 2015 17:06:48 +0700 Subject: audio/pogo: Added (Audio Player). Signed-off-by: Willy Sudiarto Raharjo --- audio/pogo/README | 10 +++++ audio/pogo/doinst.sh | 9 +++++ audio/pogo/pogo.SlackBuild | 94 ++++++++++++++++++++++++++++++++++++++++++++++ audio/pogo/pogo.info | 10 +++++ audio/pogo/slack-desc | 19 ++++++++++ 5 files changed, 142 insertions(+) create mode 100644 audio/pogo/README create mode 100644 audio/pogo/doinst.sh create mode 100644 audio/pogo/pogo.SlackBuild create mode 100644 audio/pogo/pogo.info create mode 100644 audio/pogo/slack-desc (limited to 'audio') diff --git a/audio/pogo/README b/audio/pogo/README new file mode 100644 index 0000000000..8659e59406 --- /dev/null +++ b/audio/pogo/README @@ -0,0 +1,10 @@ +Probably the simplest and fastest audio player for Linux. + +Pogo plays your music. Nothing else. It is both fast and easy-to-use. +The clear interface uses the screen real-estate very efficiently. +Other features include: +Fast search on the harddrive and in the playlist, smart album grouping, +cover display, desktop notifications and no music library. + +Pogo is a fork of Decibel Audio Player and supports most common audio formats. +It is written in Python and uses GTK+ and gstreamer. diff --git a/audio/pogo/doinst.sh b/audio/pogo/doinst.sh new file mode 100644 index 0000000000..3e5691a052 --- /dev/null +++ b/audio/pogo/doinst.sh @@ -0,0 +1,9 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/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/pogo/pogo.SlackBuild b/audio/pogo/pogo.SlackBuild new file mode 100644 index 0000000000..5166d77b0a --- /dev/null +++ b/audio/pogo/pogo.SlackBuild @@ -0,0 +1,94 @@ +#!/bin/sh +# Slackware build script for pogo + +# Copyright 2015 Edinaldo P. Silva +# 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=pogo +VERSION=${VERSION:-0.8.3} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) 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 + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$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 {} \; + +make VERBOSE=1 +make install DESTDIR=$PKG MANDIR=$PKG/usr/man + +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 + +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 + +find $PKG -name perllocal.pod \ + -o -name ".packlist" \ + -o -name "*.bs" \ + | xargs rm -f + +mkdir -p $PKG/usr/share/doc/$PRGNAM-$VERSION +cp -a README $PKG/usr/share/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/share/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/pogo/pogo.info b/audio/pogo/pogo.info new file mode 100644 index 0000000000..54709ccd0b --- /dev/null +++ b/audio/pogo/pogo.info @@ -0,0 +1,10 @@ +PRGNAM="pogo" +VERSION="0.8.3" +HOMEPAGE="https://launchpad.net/pogo" +DOWNLOAD="https://launchpad.net/pogo/trunk/0.8.3/+download/pogo-0.8.3.tar.gz" +MD5SUM="0eded5ca836dad809c5ab610f76868f8" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="gst-plugins-ugly gst-python mutagen" +MAINTAINER="Edinaldo P. Silva" +EMAIL="edps.mundognu@gmail.com" diff --git a/audio/pogo/slack-desc b/audio/pogo/slack-desc new file mode 100644 index 0000000000..384d126a25 --- /dev/null +++ b/audio/pogo/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------------------------------------------------------| +pogo: pogo (Probably the simplest and fastest audio player for Linux.) +pogo: +pogo: Pogo plays your music. Nothing else. It is both fast and easy-to-use. +pogo: The clear interface uses the screen real-estate very efficiently. +pogo: +pogo: Other features include: Fast search on the harddrive and in the +pogo: playlist, smart album grouping, cover display, desktop +pogo: notifications and no music library. +pogo: +pogo: Homepage: https://launchpad.net/pogo +pogo: \ No newline at end of file -- cgit v1.2.3